From f49b07d3ae426466c097d0a27c7adee77c2603d3 Mon Sep 17 00:00:00 2001 From: Ole Kristian Losvik Date: Wed, 5 Aug 2026 01:16:36 +0200 Subject: [PATCH] fix: replace placeholder allowBuilds value for @swc/core MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `'@swc/core': set this to true or false` was committed as an unresolved placeholder. pnpm 11 treats a non-boolean allowBuilds value as undecided, so `strictDepBuilds` fails a fresh install: [ERR_PNPM_IGNORED_BUILDS] Ignored build scripts: @swc/core@1.15.46 An explicit boolean — either one — satisfies the check. `false` is correct here: @swc/core is only a transitive dep (webpack, ts-node), its postinstall merely probes for the native binding, and both CI and the Docker build run `pnpm install --ignore-scripts`, so no build path in this repo runs it. Co-Authored-By: Claude Opus 5 (1M context) --- pnpm-workspace.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index 2d65164..2a19a97 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -10,7 +10,7 @@ packages: allowBuilds: '@parcel/watcher': true '@sentry/cli': true - '@swc/core': set this to true or false + '@swc/core': false aws-crt: true esbuild: true libsql: true