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/docs
diff options
context:
space:
mode:
authorAjay Narain Mathur <ajaynarainmathur@gmail.com>2020-02-24 14:17:48 +0300
committerDarcy Clarke <darcy@darcyclarke.me>2020-02-25 18:51:27 +0300
commitf6ff417767d52418cc8c9e7b9731ede2c3916d2e (patch)
tree8a99cc3d9d05c35ac209587f34304ae7c75e4416 /docs
parent1c272832d048300e409882313305c416dc6f21a2 (diff)
updated script to say postinstall to show intention
PR-URL: https://github.com/npm/cli/pull/936 Credit: @ Close: #936 Reviewed-by: @Darcy Clarke
Diffstat (limited to 'docs')
-rw-r--r--docs/content/using-npm/scripts.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/using-npm/scripts.md b/docs/content/using-npm/scripts.md
index 7de73077b..a518e8047 100644
--- a/docs/content/using-npm/scripts.md
+++ b/docs/content/using-npm/scripts.md
@@ -215,7 +215,7 @@ For example, if your package.json contains this:
```json
{ "scripts" :
{ "install" : "scripts/install.js"
- , "postinstall" : "scripts/install.js"
+ , "postinstall" : "scripts/postinstall.js"
, "uninstall" : "scripts/uninstall.js"
}
}