mirror of
https://github.com/MeshEnvy/mesh-forge.git
synced 2026-07-06 01:42:13 +02:00
14 lines
758 B
Plaintext
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.
|