Commit 4221fcb
authored
chore: fix release script and ignore .claude (#40)
- `release` script was `npm build & npm publish`: `npm build` is not a
built-in npm command (should be `npm run build`), and the single `&`
ran the two commands in parallel, so `npm publish` could fire before
the build completed (or even when it failed). Replaced with
`npm run build && npm publish` so publish is gated on build success.
- Added `.claude` to `.gitignore` so local Claude Code context files
(CLAUDE.md, etc.) stay out of the repo.1 parent 427cd47 commit 4221fcb
2 files changed
Lines changed: 2 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| 7 | + | |
7 | 8 | | |
8 | 9 | | |
9 | 10 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
0 commit comments