From 6edd84539a2ac4203187b1c4102ad786a45f4d04 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Fri, 10 Apr 2026 06:18:29 -0700 Subject: [PATCH] rules update --- .cursor/rules/no-production-build.mdc | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .cursor/rules/no-production-build.mdc diff --git a/.cursor/rules/no-production-build.mdc b/.cursor/rules/no-production-build.mdc new file mode 100644 index 0000000..f84273d --- /dev/null +++ b/.cursor/rules/no-production-build.mdc @@ -0,0 +1,10 @@ +--- +description: Do not run Vite/production builds by default; they freeze this environment. +alwaysApply: true +--- + +# Production build (Vite) + +Do **not** run `vite build`, `bun run build`, `npm run build`, or equivalent full production bundles **unless the user explicitly asks** for a build. They tend to freeze or stall here. + +Prefer lighter checks when validating changes (e.g. `tsc --noEmit`, `eslint`, targeted tests) or rely on static review. If a build is truly needed, say so and let the user run it locally or in CI.