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-02-23 02:57:04 +0300
committerRebecca Turner <me@re-becca.org>2017-02-24 02:53:51 +0300
commit24a3fc56d6eced3460ec817e9f8cd22db36c5095 (patch)
treeda576ffd4cb199e4d66959b865bf32cbcd995307 /package.json
parentde9c6abf6a68ff415c5fc740f0dabd058fa8be36 (diff)
package: Use prepare lifecycle instead of prepublish
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 704cf85cc..614d5f8f3 100644
--- a/package.json
+++ b/package.json
@@ -211,7 +211,7 @@
},
"scripts": {
"dumpconf": "env | grep npm | sort | uniq",
- "prepublish": "node bin/npm-cli.js prune --prefix=. --no-global && rimraf test/*/*/node_modules && make doc-clean && make -j4 doc",
+ "prepare": "node bin/npm-cli.js prune --prefix=. --no-global && rimraf test/*/*/node_modules && make doc-clean && make -j4 doc",
"preversion": "bash scripts/update-authors.sh && git add AUTHORS && git commit -m \"update AUTHORS\" || true",
"tap": "tap --timeout 300",
"tap-cover": "tap --nyc-arg='--cache' --coverage --timeout 600",