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
Final local publish-readiness verification on main1.2.93 still fails in the real packed prod-only startup smoke.
npm install, npm run typecheck, npm test, and npm run app:build pass under Node 20.20.2 / npm 10.8.2. npm audit --omit=dev reports 0 vulnerabilities. However npm run preflight fails at the Prod-only start smoke (packed tarball install + boot) stage.
The packed tarball installs with --omit=dev, removed deps are absent, and #481's browser auto-open guard is working, but the real bin exits during server startup before /api/auth/status is served.
Parent: #465
Blocks: #472
Problem
Final local publish-readiness verification on
main1.2.93still fails in the real packed prod-only startup smoke.npm install,npm run typecheck,npm test, andnpm run app:buildpass under Node 20.20.2 / npm 10.8.2.npm audit --omit=devreports 0 vulnerabilities. Howevernpm run preflightfails at theProd-only start smoke (packed tarball install + boot)stage.The packed tarball installs with
--omit=dev, removed deps are absent, and #481's browser auto-open guard is working, but the real bin exits during server startup before/api/auth/statusis served.Reproduction
On local
mainafter PR #483:Observed preflight failure:
Important context
npx prismapath by resolving the local Prisma CLI and invoking it withnode.PLOTLINK_OWS_NO_OPEN=1.dependencies.npm publish.Expected behavior
npm run preflightshould pass end-to-end on the packed tarball under Node 20.x/npm 10.x:npm packnpm install --omit=devwith scripts onPLOTLINK_OWS_NO_OPEN=1/api/auth/statusresponds/serves the prebuilt web UIAcceptance
npm run typechecknpm testnpm run app:buildnpm run preflightnpm audit --omit=devremains clean.