fix: ship all versioned release metadata

This commit is contained in:
Affaan Mustafa
2026-04-12 02:50:14 -07:00
parent 93135d7707
commit 9d849711f1
2 changed files with 16 additions and 1 deletions

View File

@@ -90,14 +90,17 @@
"scripts/uninstall.js",
"skills/",
"AGENTS.md",
"agent.yaml",
".claude-plugin/plugin.json",
".claude-plugin/marketplace.json",
".claude-plugin/README.md",
".codex-plugin/plugin.json",
".codex-plugin/README.md",
".mcp.json",
"install.sh",
"install.ps1",
"llms.txt"
"llms.txt",
"VERSION"
],
"bin": {
"ecc": "scripts/ecc.js",

View File

@@ -67,6 +67,18 @@ function main() {
packagedPaths.has(".opencode/dist/tools/index.js"),
"npm pack should include compiled OpenCode tool output"
)
assert.ok(
packagedPaths.has(".claude-plugin/marketplace.json"),
"npm pack should include .claude-plugin/marketplace.json"
)
assert.ok(
packagedPaths.has("agent.yaml"),
"npm pack should include agent.yaml"
)
assert.ok(
packagedPaths.has("VERSION"),
"npm pack should include VERSION"
)
}],
]