From e4672cc5395866340d6db79d2992a53c964e924c Mon Sep 17 00:00:00 2001 From: Pranav Zinzurde Date: Wed, 17 Jun 2026 17:10:49 +0530 Subject: [PATCH] ci: set ignore-scripts=false to fix executable build The release-automation .npmrc set `ignore-scripts=true`. On the Build Executables runner (Node 14 / npm 6), npm honors ignore-scripts even for explicit `npm run`, so `npm run build_cjs` became a silent no-op: `build/` was never produced and `cp -R ./build/* packages/` failed with "No such file or directory". This has broken the executable build for the last 3 releases (since v1.32.0-beta.8). `yarn build` (lerna+nx) is unaffected because nx runs package scripts through its own task runner rather than `npm run`. Co-Authored-By: Claude Opus 4.8 (1M context) --- .npmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.npmrc b/.npmrc index 2de238764..ed1ffc6a9 100644 --- a/.npmrc +++ b/.npmrc @@ -1,4 +1,4 @@ -ignore-scripts=true +ignore-scripts=false strict-ssl=true save-exact=true audit-level=high