From 1658b2aeae9f61a406ef87362332190fd09b7d6a Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Wed, 3 Jun 2026 15:46:22 -0400 Subject: [PATCH] build: approve scripts we rely on at install time, in prep for npm 12 With npm 12, scripts will not run unless they are explicitly approved. See https://docs.npmjs.com/cli/v11/commands/npm-approve-scripts https://ishu.dev/post/npm-install-scripts-opt-in-rfc-prepare-now-2026-05-20 --- package.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index fb41639d..4d0e7454 100644 --- a/package.json +++ b/package.json @@ -86,5 +86,18 @@ }, "workspaces": [ "packages/*" - ] + ], + "allowScripts": { + "esbuild@0.25.5": true, + "esbuild@0.25.9": true, + "esbuild@0.27.7": true, + "nx@21.6.10": true, + "nx@21.6.11": true, + "nx@22.6.5": true, + "@parcel/watcher@2.5.6": true, + "cypress@15.16.0": true, + "lmdb@3.4.2": true, + "msgpackr-extract@3.0.3": true, + "unrs-resolver@1.11.1": true + } }