@nahisaho/shikigami 1.16.4 → 1.16.5
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 +7 -0
- package/mcp-server/package.json +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to SHIKIGAMI 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
|
+
## [1.16.5] - 2026-01-18
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **postinstall.js**: `npm install`時に`outputs/`ディレクトリを自動作成しないよう変更
|
|
13
|
+
- プロジェクト作成は`npx shikigami new`で明示的に行う設計に統一
|
|
14
|
+
|
|
8
15
|
## [1.16.4] - 2026-01-18
|
|
9
16
|
|
|
10
17
|
### Changed
|
package/mcp-server/package.json
CHANGED
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -28,9 +28,9 @@ const itemsToCopy = [
|
|
|
28
28
|
{ src: 'AGENTS.md', dest: 'AGENTS.md', type: 'file' },
|
|
29
29
|
];
|
|
30
30
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
];
|
|
31
|
+
// Note: outputs/ directory is NOT created automatically.
|
|
32
|
+
// Use `npx shikigami new <name>` to create project directories.
|
|
33
|
+
const itemsToCreate = [];
|
|
34
34
|
|
|
35
35
|
/**
|
|
36
36
|
* Recursively copy directory
|