mcpill 1.2.1 → 1.2.2
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 +4 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.2.2
|
|
4
|
+
|
|
5
|
+
- Fix: bump mcpster dependency to `^0.3.0` — `0.2.x` did not export `applySetup`, causing a crash on `mcpill --version` after global install
|
|
6
|
+
|
|
3
7
|
## 1.2.1
|
|
4
8
|
|
|
5
9
|
- All init assets scoped under `.mcpill/` — only `PILL.md` is written to the project root
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcpill",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CLI for building, validating, and publishing MCP servers using the pill format.",
|
|
6
6
|
"homepage": "https://mcpill.ruco.dev",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"mcpill-runtime": "^0.1.0",
|
|
25
|
-
"mcpster": "^0.
|
|
25
|
+
"mcpster": "^0.3.0",
|
|
26
26
|
"commander": "^12"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|