@sk8metal/michi-cli 0.0.3 → 0.0.4
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/CHANGELOG.md +20 -0
- package/README.md +1 -0
- package/dist/scripts/config/config-schema.d.ts +109 -600
- package/dist/scripts/config/config-schema.d.ts.map +1 -1
- package/dist/scripts/config/config-schema.js.map +1 -1
- package/dist/scripts/config-interactive.js +3 -3
- package/dist/scripts/confluence-sync.js +3 -3
- package/dist/scripts/create-project.js.map +1 -1
- package/dist/scripts/jira-sync.js +5 -5
- package/dist/scripts/markdown-to-confluence.js +1 -1
- package/dist/scripts/markdown-to-confluence.js.map +1 -1
- package/dist/scripts/multi-project-estimate.js +1 -1
- package/dist/scripts/phase-runner.js.map +1 -1
- package/dist/scripts/pre-flight-check.js +1 -1
- package/dist/scripts/setup-existing-project.js.map +1 -1
- package/dist/scripts/utils/config-validator.d.ts.map +1 -1
- package/dist/scripts/utils/config-validator.js +46 -46
- package/dist/scripts/utils/config-validator.js.map +1 -1
- package/dist/scripts/utils/confluence-hierarchy.js +7 -7
- package/dist/scripts/utils/confluence-hierarchy.js.map +1 -1
- package/dist/scripts/validate-phase.js.map +1 -1
- package/dist/scripts/workflow-orchestrator.js.map +1 -1
- package/dist/vitest.config.d.ts.map +1 -1
- package/dist/vitest.config.js +8 -4
- package/dist/vitest.config.js.map +1 -1
- package/docs/release.md +365 -0
- package/package.json +15 -13
- package/scripts/config/config-schema.ts +5 -5
- package/scripts/config-interactive.ts +3 -3
- package/scripts/confluence-sync.ts +3 -3
- package/scripts/create-project.ts +17 -17
- package/scripts/jira-sync.ts +5 -5
- package/scripts/markdown-to-confluence.ts +1 -1
- package/scripts/multi-project-estimate.ts +1 -1
- package/scripts/phase-runner.ts +8 -8
- package/scripts/pre-flight-check.ts +1 -1
- package/scripts/setup-existing-project.ts +9 -9
- package/scripts/utils/config-validator.ts +47 -46
- package/scripts/utils/confluence-hierarchy.ts +51 -51
- package/scripts/validate-phase.ts +11 -11
- package/scripts/workflow-orchestrator.ts +27 -27
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.0.4] - 2025-11-13
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Vitest 4への移行(1.x → 4.x)
|
|
12
|
+
- ESLint 9への移行(8.x → 9.x、Flat Config対応)
|
|
13
|
+
- Zod 4への移行(3.x → 4.x)
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
- Updated `vitest` from `^1.6.1` to `^4.0.8`
|
|
17
|
+
- Updated `@vitest/coverage-v8` from `^1.6.1` to `^4.0.8`
|
|
18
|
+
- Updated `eslint` from `^8.57.1` to `^9.39.1`
|
|
19
|
+
- Updated `@typescript-eslint/eslint-plugin` from `^6.21.0` to `^8.46.4`
|
|
20
|
+
- Updated `@typescript-eslint/parser` from `^6.21.0` to `^8.46.4`
|
|
21
|
+
- Updated `typescript-eslint` from `^6.21.0` to `^8.46.4`
|
|
22
|
+
- Updated `zod` from `^3.25.76` to `^4.1.12`
|
|
23
|
+
- Updated `@octokit/rest` from `^20.1.2` to `^22.0.1`
|
|
24
|
+
- Updated `googleapis` from `^126.0.1` to `^166.0.0`
|
|
25
|
+
- Updated `@types/node` from `^20.19.24` to `^24.10.1`
|
|
26
|
+
- Updated `@types/markdown-it` from `^13.0.9` to `^14.1.2`
|
|
27
|
+
|
|
8
28
|
## [0.0.3] - 2025-11-12
|
|
9
29
|
|
|
10
30
|
### Added
|
package/README.md
CHANGED
|
@@ -301,6 +301,7 @@ npm run create-project -- \
|
|
|
301
301
|
- [ワークフローガイド](./docs/workflow.md) - AI開発フロー
|
|
302
302
|
- [マルチプロジェクト管理](./docs/multi-project.md) - 複数プロジェクト管理
|
|
303
303
|
- [テスト・検証](./docs/testing.md) - E2Eテスト、フィードバック
|
|
304
|
+
- [リリース手順](./docs/release.md) - バージョンアップ・NPM公開手順
|
|
304
305
|
- [CI/CD整備計画](./docs/cicd-plan.md) - CI/CDパイプラインの計画と実装状況
|
|
305
306
|
|
|
306
307
|
## CI/CD
|