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:
authorKat Marchán <kzm@zkat.tech>2018-12-13 00:33:22 +0300
committerKat Marchán <kzm@zkat.tech>2018-12-13 00:36:52 +0300
commit76451570abafe087896f278f598f5b8b05bd1abe (patch)
tree60a1a61043814270268614dae0ceba37c299714d /package.json
parent1a20b385d95603d68b294042d68d186485383f2f (diff)
deps: make prepare run `rebuild` to make sure bins from deps are there
Diffstat (limited to 'package.json')
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 8221a24ec..e46d57c8f 100644
--- a/package.json
+++ b/package.json
@@ -281,7 +281,7 @@
},
"scripts": {
"dumpconf": "env | grep npm | sort | uniq",
- "prepare": "node bin/npm-cli.js --no-audit --no-timing prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j4 doc",
+ "prepare": "node bin/npm-cli.js rebuild && node bin/npm-cli.js --no-audit --no-timing prune --prefix=. --no-global && rimraf test/*/*/node_modules && make -j4 doc",
"preversion": "bash scripts/update-authors.sh && git add AUTHORS && git commit -m \"update AUTHORS\" || true",
"licenses": "licensee --production --errors-only",
"tap": "tap --reporter=classic --timeout 300",