You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: compile better-sqlite3 via node-gyp directly in pnpm virtual store
npm/pnpm rebuild only target packages with a root-level node_modules symlink.
better-sqlite3 is a transitive dep (backend -> executor -> services), so pnpm
only places it in .pnpm/ with no root symlink — both rebuild commands silently
no-op.
Fix: install node-gyp globally, find the package precisely in .pnpm/ using
find ... | grep '/node_modules/better-sqlite3$'
then run node-gyp rebuild --release directly there. This is arch-agnostic and
works regardless of hoisting behavior in turbo prune output.
0 commit comments