Skip to content

Commit 16335a9

Browse files
authored
Merge pull request #11 from shinpr/fix/update-version-and-cleanup-readme
fix: update package version and remove non-existent test-utils refere…
2 parents 6aba5ff + 33acf14 commit 16335a9

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ git commit -m "feat: initial commit from AI Coding Project Boilerplate"
8686
# [ターゲットユーザーの職種をここに記載] → 実際のターゲット
8787
```
8888

89-
9089
### 3. GitHubリポジトリの設定
9190

9291
1. **GitHubで新しいリポジトリを作成**
@@ -194,7 +193,7 @@ graph TD
194193
### 6つのルールファイル
195194
1. **technical-spec.md**: 技術仕様・アーキテクチャ設計
196195
2. **typescript.md**: TypeScript開発ルール(パフォーマンス最適化を含む)
197-
3. **typescript-testing.md**: テストルール・test-utils活用
196+
3. **typescript-testing.md**: テストルール・Vitestの活用
198197
4. **project-context.md**: プロジェクトコンテキスト(テンプレート)
199198
5. **ai-development-guide.md**: AI開発者向け実装ガイド
200199
6. **architecture-decision-process.md**: ADR作成・運用プロセス
@@ -213,11 +212,11 @@ npm run test:ui # Vitest UI起動
213212
npm run cleanup:processes # テスト後のプロセスクリーンアップ
214213
```
215214

216-
### test-utils活用システム
217-
- **TestBuilder**: 複雑なオブジェクト構築をパターン化
218-
- **assertHelpers**: 繰り返し使用する検証ロジックを共通化
219-
- **モック判断フロー**: 単純→test-utils、複雑→個別実装
220-
- **重複防止**: 3回目の重複でtest-utils移動を検討
215+
### テストヘルパーの活用方針
216+
- **ビルダーパターン**: 複雑なテストデータの構築を簡素化
217+
- **カスタムアサーション**: 繰り返し使用する検証ロジックを共通化
218+
- **モックの判断基準**: シンプルで安定的なものは共通化、複雑・変更頻度の高いものは個別実装
219+
- **重複防止**: 3回目の重複で共通化を検討(Rule of Three)
221220

222221
### Vitest最適化
223222
- プロセス管理: 自動クリーンアップでゾンビプロセス防止

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ai-coding-project-boilerplate",
3-
"version": "0.1.0",
3+
"version": "1.2.2",
44
"description": "TypeScript project boilerplate optimized for Claude Code development with comprehensive development rules, architecture patterns, and quality assurance tools",
55
"main": "dist/index.js",
66
"keywords": [

0 commit comments

Comments
 (0)