Skip to content

Commit 849a121

Browse files
committed
fix(clean): remove .codemap from git clean exclusions
bun run clean now wipes local index state under .codemap/ for a true fresh tree; .env and docs/research/scratch/ stay preserved.
1 parent 76aed6e commit 849a121

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bun run test:golden # golden SQL vs fixtures/minimal (also runs at end of `bun
1717
bun run test:agent-eval # agent-eval harness smoke (probe + live; also runs at end of `bun run check`)
1818
bun run test:golden:external # Tier B: local tree via CODEMAP_ROOT / --root (not in CI)
1919
bun run check # build, then format:check + lint:ci + test + typecheck, then test:golden + test:agent-eval
20-
bun run clean # remove untracked/ignored build artifacts (keeps `.env`, `.codemap/`, `docs/research/scratch/`)
20+
bun run clean # remove untracked/ignored build artifacts (keeps `.env`, `docs/research/scratch/`; removes `.codemap/` index state)
2121
bun run check-updates # interactive dependency updates (`bun update -i --latest`)
2222
```
2323

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"check-updates": "bun update -i --latest",
5151
"check:perf-baseline": "bun scripts/check-perf-baseline.ts",
5252
"check:perf-baseline:update": "bun scripts/check-perf-baseline.ts --update",
53-
"clean": "git clean -xdf -e .env -e .codemap -e docs/research/scratch",
53+
"clean": "git clean -xdf -e .env -e docs/research/scratch",
5454
"dev": "bun src/index.ts",
5555
"fix": "bun run lint:fix && bun run format",
5656
"format": "oxfmt",

0 commit comments

Comments
 (0)