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. git-svn-id: https://develop.svn.wordpress.org/trunk@45875 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
1ba44554be
commit
8d5e4fed4d
8
package-lock.json
generated
8
package-lock.json
generated
@ -13807,8 +13807,8 @@
|
||||
"integrity": "sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw=="
|
||||
},
|
||||
"jquery-color": {
|
||||
"version": "github:jquery/jquery-color#95402e5b2f1184ab2de7014aeef0a90f2bee0a40",
|
||||
"from": "github:jquery/jquery-color#2.1.1"
|
||||
"version": "https://github.com/jquery/jquery-color/archive/2.1.1.tar.gz",
|
||||
"integrity": "sha512-jEnPyfJVmszNKz1vDYXVu/1RafVio6/aCp/lq1D1BLejJzpsmQeje7NkGMGb3ewRJ8LdZvqumYEijt5ezbUBlQ=="
|
||||
},
|
||||
"jquery-form": {
|
||||
"version": "4.2.1",
|
||||
@ -13833,8 +13833,8 @@
|
||||
"dev": true
|
||||
},
|
||||
"jquery-ui": {
|
||||
"version": "github:jquery/jquery-ui#d6713024e16de90ea71dc0544ba34e1df01b4d8a",
|
||||
"from": "github:jquery/jquery-ui#1.11.4"
|
||||
"version": "https://github.com/jquery/jquery-ui/archive/1.11.4.tar.gz",
|
||||
"integrity": "sha512-yMLXNruSte8iAAOsShJvUdcwgrHbWrxBCoKfPGqDmgFkfNLbnXoHcyxgOvI2IbgfupFF2paOm0AvOq6iERedKQ=="
|
||||
},
|
||||
"js-base64": {
|
||||
"version": "2.5.1",
|
||||
|
@ -106,10 +106,10 @@
|
||||
"element-closest": "^2.0.2",
|
||||
"formdata-polyfill": "3.0.13",
|
||||
"imagesloaded": "3.2.0",
|
||||
"jquery-color": "github:jquery/jquery-color#2.1.1",
|
||||
"jquery-color": "https://github.com/jquery/jquery-color/archive/2.1.1.tar.gz",
|
||||
"jquery-form": "4.2.1",
|
||||
"jquery-hoverintent": "1.8.3",
|
||||
"jquery-ui": "github:jquery/jquery-ui#1.11.4",
|
||||
"jquery-ui": "https://github.com/jquery/jquery-ui/archive/1.11.4.tar.gz",
|
||||
"lodash": "4.17.15",
|
||||
"masonry-layout": "3.3.2",
|
||||
"moment": "2.22.2",
|
||||
|
Loading…
Reference in New Issue
Block a user