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
path: root/doc
diff options
context:
space:
mode:
authorNikolai Vavilov <vvnicholas@gmail.com>2018-11-26 19:14:36 +0300
committerKat Marchán <kzm@zkat.tech>2018-11-26 19:14:36 +0300
commitdcc03ec858bddd7aa2173b5a86b55c1c2385a2a3 (patch)
treefb0013a58a908aef7c4968d8d569533782d135f3 /doc
parent4be51a9cc65635bb26fa4ce62233f26e0104bc20 (diff)
docs: Note that "prepare" runs when installing git dependencies (#82)
PR-URL: https://github.com/npm/cli/pull/82 Credit: @seishun Reviewed-By: @zkat
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/npm-scripts.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/misc/npm-scripts.md b/doc/misc/npm-scripts.md
index e4b90096a..80d19fc95 100644
--- a/doc/misc/npm-scripts.md
+++ b/doc/misc/npm-scripts.md
@@ -10,9 +10,9 @@ following scripts:
Run BEFORE the package is packed and published, as well as on local `npm
install` without any arguments. (See below)
* prepare:
- Run both BEFORE the package is packed and published, and on local `npm
- install` without any arguments (See below). This is run
- AFTER `prepublish`, but BEFORE `prepublishOnly`.
+ Run both BEFORE the package is packed and published, on local `npm
+ install` without any arguments, and when installing git dependencies (See
+ below). This is run AFTER `prepublish`, but BEFORE `prepublishOnly`.
* prepublishOnly:
Run BEFORE the package is prepared and packed, ONLY on `npm publish`. (See
below.)