From f6ff417767d52418cc8c9e7b9731ede2c3916d2e 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 PR-URL: https://github.com/npm/cli/pull/936 Credit: @ Close: #936 Reviewed-by: @Darcy Clarke --- 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 7de73077b22b..a518e804727a 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" } }