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:
authorTim Krins <timkrins@gmail.com>2015-10-20 20:53:29 +0300
committerRebecca Turner <me@re-becca.org>2016-01-21 04:08:38 +0300
commit310930395c9bf1577cf085b9742210bfc71bb019 (patch)
treef129af40bb3733f7ead5fdae5bf266097d860e6d /doc
parente9f1ad88ce58ecd111811e11afa52ac19fc8696e (diff)
run-script: Warn if using script without install
It might be helpful to remind people that they're trying to run a script before they actually run `npm install` on the package. PR-URL: https://github.com/npm/npm/pull/10043 Credit: @timkrins
Diffstat (limited to 'doc')
-rw-r--r--doc/cli/npm-run-script.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/cli/npm-run-script.md b/doc/cli/npm-run-script.md
index 1e956adcc..b8da1f09f 100644
--- a/doc/cli/npm-run-script.md
+++ b/doc/cli/npm-run-script.md
@@ -40,6 +40,9 @@ you should write:
instead of `"scripts": {"test": "node_modules/.bin/tap test/\*.js"}` to run your tests.
+If you try to run a script without having a `node_modules` directory and it fails,
+you will be given a warning to run `npm install`, just in case you've forgotten.
+
## SEE ALSO
* npm-scripts(7)