From fa840611a1b8b41c748457b3e4e5f814811b744d Mon Sep 17 00:00:00 2001 From: Iku-turso Date: Thu, 4 May 2023 12:07:55 +0300 Subject: [PATCH] chore: Make script "all:install" use the fixed version of npm Co-authored-by: Gabriel Signed-off-by: Iku-turso --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d2b90d4eed..5bba9e97f3 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "all:reinstall": "npm run clean:node_modules && npm run all:install", - "all:install": "npm install", + "all:install": "npx --yes --package npm@9.6.5 npm install", "adr:create": "echo \"What is the title?\"; read title; adr new \"$title\"", "adr:change-status": "echo \"Decision number?:\"; read decision; adr status $decision", "adr:update-readme": "adr update",