From 1942e55f763bd3d74c7cbc3dc1fc4c0ec070414c Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Mon, 6 Mar 2023 17:23:59 +0100 Subject: [PATCH] fix(scripts/bump-pkg): fix npm *Cannot set properties of null (setting 'parent')* error --- scripts/bump-pkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bump-pkg b/scripts/bump-pkg index 2ce20a307a..8f70ce76f1 100755 --- a/scripts/bump-pkg +++ b/scripts/bump-pkg @@ -23,7 +23,7 @@ esac if [ $# -ge 2 ] then - npm version "$2" + npm --save=false --workspaces=false version "$2" git checkout HEAD :/yarn.lock fi # if version is not passed, simply update other packages