Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2017-04-21 00:57:49 +0300
committerRebecca Turner <me@re-becca.org>2017-04-21 01:54:27 +0300
commite4a931be8989e8de603e715f02cac16ea527d284 (patch)
treed52fad5e33d44ab8e4647fd2de734fdbf883ca90 /scripts
parent4a2e1443613a199665e7adbda034d5b9d10391a2 (diff)
tooling: dev-dep-update should add shrinkwrap too
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev-dep-update2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dev-dep-update b/scripts/dev-dep-update
index 6058cce94..b8b71f825 100755
--- a/scripts/dev-dep-update
+++ b/scripts/dev-dep-update
@@ -1,6 +1,6 @@
#!/bin/bash
node . install --save --save-dev $1@$2 &&\
-git add package.json &&\
+git add package.json npm-shrinkwrap.json &&\
git commit -m"$1@$2" &&\
node . repo $1 &&\
git commit --amend