From 8d5e4fed4dd55032726a5315c40bcf7d60e1ca7d Mon Sep 17 00:00:00 2001 From: Gary Pendergast Date: Thu, 22 Aug 2019 02:28:50 +0000 Subject: [PATCH] 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 --- package-lock.json | 8 ++++---- package.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package-lock.json b/package-lock.json index 362aa5fbb405e..96a0c17a56ca7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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", diff --git a/package.json b/package.json index a1558f27851e9..c0e2d1b4ee1c5 100644 --- a/package.json +++ b/package.json @@ -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",