Skip to content

Commit 79efcf1

Browse files
marcusgollclaude
andcommitted
fix(build): include CLAUDE.md and QUICKSTART.md in npm package
.npmignore was excluding dist/ which prevented essential files from being included in the npm package distribution. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent f5a28bd commit 79efcf1

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ test-projects/
5252
examples/local/
5353

5454
# Build artifacts that shouldn't be published
55-
dist/
55+
# Note: dist/ is NOT excluded - it contains the package distribution files
56+
# dist/ <- Removed: dist is the primary package content, included via package.json "files"
5657
build/
5758
coverage/
5859

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
---
44

5+
## [11.8.1] - 2025-12-15
6+
7+
### 🐛 Fixed
8+
9+
**Package Distribution Missing Essential Files**
10+
11+
- Fixed `.npmignore` excluding `dist/` folder which prevented `CLAUDE.md` and `QUICKSTART.md` from being included in the npm package
12+
- Users running `npx spec-flow init` or `npx spec-flow update` no longer see "Package is corrupted" errors
13+
14+
---
15+
516
## [11.8.0] - 2025-12-15
617

718
### ✨ Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spec-flow",
3-
"version": "11.8.0",
3+
"version": "11.8.1",
44
"description": "Spec-Driven Development workflow toolkit for Claude Code - Build high-quality features faster with repeatable AI workflows",
55
"keywords": [
66
"claude",

0 commit comments

Comments
 (0)