Make WordPress Core

Changeset 45875


Ignore:
Timestamp:
08/22/2019 02:28:50 AM (6 years ago)
Author:
pento
Message:

Build Tools: Don't use git for package installs.

While NPM supports installing packages from git locations, this requires git to be in the path, which won't necessarily be true, particularly on Windows.

We can download the release versions for these packages, instead.

Fixes #47916.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/package-lock.json

    r45826 r45875  
    1380813808        },
    1380913809        "jquery-color": {
    13810             "version": "github:jquery/jquery-color#95402e5b2f1184ab2de7014aeef0a90f2bee0a40",
    13811             "from": "github:jquery/jquery-color#2.1.1"
     13810            "version": "https://github.com/jquery/jquery-color/archive/2.1.1.tar.gz",
     13811            "integrity": "sha512-jEnPyfJVmszNKz1vDYXVu/1RafVio6/aCp/lq1D1BLejJzpsmQeje7NkGMGb3ewRJ8LdZvqumYEijt5ezbUBlQ=="
    1381213812        },
    1381313813        "jquery-form": {
     
    1383413834        },
    1383513835        "jquery-ui": {
    13836             "version": "github:jquery/jquery-ui#d6713024e16de90ea71dc0544ba34e1df01b4d8a",
    13837             "from": "github:jquery/jquery-ui#1.11.4"
     13836            "version": "https://github.com/jquery/jquery-ui/archive/1.11.4.tar.gz",
     13837            "integrity": "sha512-yMLXNruSte8iAAOsShJvUdcwgrHbWrxBCoKfPGqDmgFkfNLbnXoHcyxgOvI2IbgfupFF2paOm0AvOq6iERedKQ=="
    1383813838        },
    1383913839        "js-base64": {
  • trunk/package.json

    r45826 r45875  
    107107        "formdata-polyfill": "3.0.13",
    108108        "imagesloaded": "3.2.0",
    109         "jquery-color": "github:jquery/jquery-color#2.1.1",
     109        "jquery-color": "https://github.com/jquery/jquery-color/archive/2.1.1.tar.gz",
    110110        "jquery-form": "4.2.1",
    111111        "jquery-hoverintent": "1.8.3",
    112         "jquery-ui": "github:jquery/jquery-ui#1.11.4",
     112        "jquery-ui": "https://github.com/jquery/jquery-ui/archive/1.11.4.tar.gz",
    113113        "lodash": "4.17.15",
    114114        "masonry-layout": "3.3.2",
Note: See TracChangeset for help on using the changeset viewer.