From 028be3921bd2b879bed5ef50e1d5d71ed7c17f25 Mon Sep 17 00:00:00 2001 From: frantj Date: Wed, 1 Jul 2026 10:43:40 -0400 Subject: [PATCH] fix: allow sqlite3 native build script in pnpm config sqlite3's postinstall build script was being skipped by pnpm's default onlyBuiltDependencies allowlist, leaving the native binding unbuilt. This silently disables the SQLite-backed response cache (falls back to in-memory, non-persistent cache) with a console warning on startup. Adding sqlite3 to onlyBuiltDependencies ensures the native binding is built on install. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d0206fd..b05ca5c 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,8 @@ "pnpm": { "onlyBuiltDependencies": [ "@sentry-internal/node-cpu-profiler", - "@sentry/cli" + "@sentry/cli", + "sqlite3" ] }, "scripts": {