Conversation
watchコマンドが正常に動作していないため、機能全体を削除してコードベースをシンプルに保つ。 **削除内容:** - src/commands/watch.ts - コマンド実装 - src/__tests__/commands/watch.test.ts - テストファイル - docs/commands/watch.md - ドキュメント - src/cli.ts からのインポートと登録 **理由:** - 実際のファイル同期が動作していない - 使用頻度が低い機能である - 修正するよりも削除してコードベースをシンプルに保つ Fixes #212 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
watchコマンド削除に伴い、関連するドキュメントからの参照を削除。 **更新内容:** - docs/COMMANDS.md - watchコマンドセクションと参照を削除 - docs/commands/sync.md - watchコマンドへのリンクを削除 - README.md - watch関連記述を削除 - README.ja.md - watch関連記述を削除 **変更:** - ui.pathDisplay設定の説明からwatchコマンドを除外 - 関連コマンドリストからwatchコマンドを削除 Related to #212 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
watchコマンドの削除に伴うBreaking Changeのため、メジャーバージョンをアップデート。 **変更:** - package.json version: 4.0.0 → 5.0.0 **Breaking Change:** - mst watchコマンドが完全に削除され、使用できなくなります Related to #212 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
watchコマンド削除に伴い、E2Eテストでwatchコマンドの存在を確認する行を削除。
**修正内容:**
- e2e/tests/basic.test.ts: expect(output).toContain('watch')を削除
**理由:**
- watchコマンドが削除されたため、ヘルプテストが失敗していた
- CIエラーの修正
Related to #212
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes Made
src/commands/watch.ts- コマンド実装src/__tests__/commands/watch.test.ts- テストファイルdocs/commands/watch.md- コマンドドキュメントsrc/cli.ts- watchコマンドのインポートと登録を削除docs/COMMANDS.mddocs/commands/sync.mdREADME.md/README.ja.mdpackage.json- v4.0.0 → v5.0.0Reason for Removal
Breaking Change⚠️
mst watchコマンドが完全に使用不可となりますTest Results
Test plan
🤖 Generated with Claude Code