From a5e6f59122ebc87f4d4958d1cc4180cfa8e358e6 Mon Sep 17 00:00:00 2001 From: Ajay Narain Mathur Date: Mon, 24 Feb 2020 22:17:48 +1100 Subject: [PATCH] updated script to say postinstall to show intention --- docs/content/using-npm/scripts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/using-npm/scripts.md b/docs/content/using-npm/scripts.md index 6a2522fba43a7..e336adf392569 100644 --- a/docs/content/using-npm/scripts.md +++ b/docs/content/using-npm/scripts.md @@ -208,7 +208,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" } }