diff options
| author | Chris Rebert <[email protected]> | 2016-07-16 14:12:49 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2016-07-16 14:17:23 -0700 |
| commit | 04036c349f00c9a6fd64a842a9b7f40bc405127c (patch) | |
| tree | 9d8cb6ab8ffb520cb538d653c6781c5ae378041c | |
| parent | fb75e8615a390dfac28ca9f32470d594e47acd76 (diff) | |
| download | bootstrap-04036c349f00c9a6fd64a842a9b7f40bc405127c.tar.xz bootstrap-04036c349f00c9a6fd64a842a9b7f40bc405127c.zip | |
Port #20311 to v3
Rename shrinkwrap-related npm script (#20311)
To avoid infinite recursion in newer npm versions, which added a lifecycle script for `npm shrinkwrap`.
Refs https://github.com/npm/npm/issues/13253
Refs https://github.com/npm/npm/pull/12814
[ci skip]
| -rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 01dd9e618..6e4c3dcd7 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "author": "Twitter, Inc.", "scripts": { "change-version": "node grunt/change-version.js", - "shrinkwrap": "npm shrinkwrap --dev && shx mv ./npm-shrinkwrap.json ./grunt/npm-shrinkwrap.json", + "update-shrinkwrap": "npm shrinkwrap --dev && shx mv ./npm-shrinkwrap.json ./grunt/npm-shrinkwrap.json", "test": "grunt test" }, "style": "dist/css/bootstrap.css", |
