From 1dcb3b2467ae0026bc90f6c69a9c74b0e1f8eaff Mon Sep 17 00:00:00 2001 From: Brad Anderson Date: Sun, 1 Feb 2026 18:57:19 -0500 Subject: [PATCH] fix: add --workspaces-update=false to npm version for npm 11 compatibility npm 11's arborist has issues with bun's workspace symlinks in node_modules. This flag prevents npm from walking the workspace tree during version bump. --- packages/react-native-quick-crypto/package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/react-native-quick-crypto/package.json b/packages/react-native-quick-crypto/package.json index 6e0b60c0..ea12e672 100644 --- a/packages/react-native-quick-crypto/package.json +++ b/packages/react-native-quick-crypto/package.json @@ -111,7 +111,10 @@ "release-it": { "npm": { "publish": true, - "skipChecks": true + "skipChecks": true, + "versionArgs": [ + "--workspaces-update=false" + ] }, "git": false, "github": {