Skip to content

Commit

Permalink
Build Tools: Don't use git for package installs.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
pento committed Aug 22, 2019
1 parent 1ba4455 commit 8d5e4fe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8d5e4fe

Please sign in to comment.