lee-spec-kit 0.6.17 โ†’ 0.6.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lee-spec-kit",
3
- "version": "0.6.17",
3
+ "version": "0.6.18",
4
4
  "description": "Project documentation structure generator for AI-assisted development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -49,13 +49,18 @@
49
49
  "eslint-config-prettier": "^10.1.8",
50
50
  "prettier": "^3.7.4",
51
51
  "tsup": "^8.5.1",
52
- "typescript": "^5.9.3"
52
+ "typescript": "^5.9.3",
53
+ "vitest": "^4.0.18"
53
54
  },
54
55
  "scripts": {
55
56
  "build": "tsup",
56
57
  "dev": "tsup --watch",
57
58
  "lint": "eslint src",
58
- "test:race": "pnpm build && node --test tests/race.test.mjs",
59
+ "lint:test": "eslint tests",
60
+ "typecheck": "tsc --noEmit",
61
+ "typecheck:test": "tsc -p tsconfig.tests.json --noEmit",
62
+ "test": "pnpm build && vitest run",
63
+ "test:race": "pnpm build && vitest run tests/race.test.mjs",
59
64
  "format": "prettier --write ."
60
65
  }
61
66
  }
@@ -82,9 +82,16 @@ main
82
82
  ### Branch Creation
83
83
 
84
84
  ```bash
85
- git checkout -b feat/{issue-number}-{feature-name}
85
+ # Default (recommended): create dedicated worktree + branch
86
+ mkdir -p .worktrees
87
+ git worktree add -b feat/{issue-number}-{feature-name} .worktrees/feat-{issue-number}-{feature-name}
88
+
89
+ # If branch already exists, attach worktree only
90
+ git worktree add .worktrees/feat-{issue-number}-{feature-name} feat/{issue-number}-{feature-name}
86
91
  ```
87
92
 
93
+ > Continue implementation from the created worktree path (`.worktrees/feat-{issue-number}-{feature-name}`).
94
+
88
95
  ### Document Commit Rules (Continuous Sync)
89
96
 
90
97
  > ๐Ÿ”„ **Docs synchronization is mandatory when Project code changes.**
@@ -82,9 +82,16 @@ main
82
82
  ### ๋ธŒ๋žœ์น˜ ์ƒ์„ฑ
83
83
 
84
84
  ```bash
85
- git checkout -b feat/{issue-number}-{feature-name}
85
+ # ๊ธฐ๋ณธ(๊ถŒ์žฅ): ์ „์šฉ worktree + ๋ธŒ๋žœ์น˜ ์ƒ์„ฑ
86
+ mkdir -p .worktrees
87
+ git worktree add -b feat/{issue-number}-{feature-name} .worktrees/feat-{issue-number}-{feature-name}
88
+
89
+ # ์ด๋ฏธ ๋ธŒ๋žœ์น˜๊ฐ€ ์กด์žฌํ•˜๋ฉด worktree๋งŒ ์—ฐ๊ฒฐ
90
+ git worktree add .worktrees/feat-{issue-number}-{feature-name} feat/{issue-number}-{feature-name}
86
91
  ```
87
92
 
93
+ > ์ดํ›„ ์ž‘์—…์€ ์ƒ์„ฑ๋œ worktree ๊ฒฝ๋กœ(`.worktrees/feat-{issue-number}-{feature-name}`)์—์„œ ์ง„ํ–‰ํ•˜์„ธ์š”.
94
+
88
95
  ### ๋ฌธ์„œ ์ปค๋ฐ‹ ๊ทœ์น™ (Continuous Sync)
89
96
 
90
97
  > ๐Ÿ”„ **Project ์ฝ”๋“œ ๋ณ€๊ฒฝ ์‹œ Docs ๋™๊ธฐํ™”๋Š” ํ•„์ˆ˜์ž…๋‹ˆ๋‹ค.**