Skip to content

Commit 0c0b2b8

Browse files
marcusgollclaude
andcommitted
fix: include bin/ folder in npm package (v7.0.1)
CRITICAL FIX: v7.0.0 was broken due to missing bin/ folder in published package. The npm package only included dist/ but bin/cli.js requires other files from bin/ that weren't being included, causing version mismatch (showed 1.7.1 instead of 7.0.0). Fixed: - Added bin/ and scripts/build-dist.js to package.json files array - Updated CHANGELOG to mark v7.0.0 as broken - Version bumped to 7.0.1 Users who installed v7.0.0 should upgrade immediately with: npx spec-flow@latest update 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b4b51b2 commit 0c0b2b8

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@
22

33
---
44

5-
## [7.0.0] - 2025-11-20
5+
## [7.0.1] - 2025-11-20
6+
7+
### 🐛 Fixed
8+
9+
**Critical Package Fix**
10+
- Fixed missing bin/ folder in npm package causing installation failures
11+
- Added bin/, scripts/build-dist.js to package.json files array
12+
- v7.0.0 was broken and showed version 1.7.1 due to missing CLI dependencies
13+
- **Action Required**: Users who installed v7.0.0 should upgrade to v7.0.1 immediately
14+
15+
---
16+
17+
## [7.0.0] - 2025-11-20 [BROKEN - Use v7.0.1]
18+
19+
**⚠️ This version is broken. Please use v7.0.1 instead.**
620

721
### ⚠️ BREAKING CHANGES
822

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spec-flow",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Spec-Driven Development workflow toolkit for Claude Code - Build high-quality features faster with repeatable AI workflows",
55
"keywords": [
66
"claude",
@@ -26,7 +26,9 @@
2626
"spec-flow": "bin/cli.js"
2727
},
2828
"files": [
29-
"dist/"
29+
"dist/",
30+
"bin/",
31+
"scripts/build-dist.js"
3032
],
3133
"scripts": {
3234
"build": "node scripts/build-dist.js",

0 commit comments

Comments
 (0)