Files
mesh-forge/.cursor/rules/no-production-build.mdc

14 lines
758 B
Plaintext

---
description: Do not run project or production builds unless the user explicitly asks.
alwaysApply: true
---
# Do not build projects
Do **not** run builds for apps, samples, or firmware in this repo **unless the user explicitly asks** for a build. That includes:
- Web / bundlers: `vite build`, `bun run build`, `npm run build`, or equivalent production bundles (they often freeze or stall here).
- Embedded / samples: PlatformIO (`pio run`, `platformio`), firmware toolchains, `cmake --build`, `cargo build` for project crates, and similar full project builds.
Prefer lighter checks when validating changes (e.g. `tsc --noEmit`, `eslint`, targeted tests) or static review. If a build is truly needed, say so and let the user run it locally or in CI.