Skip to content

Commit 71c0bd2

Browse files
Minidoracatclaude
andcommitted
fix: 更新 pack-version-check 腳本的套件名稱
- 將 @fission-ai/openspec 改為 @minidoracat/openspec-tw - 更新套件路徑從 node_modules/@fission-ai/openspec 到 node_modules/@minidoracat/openspec-tw - 修正 CI 發布流程中的版本檢查錯誤 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 162c66a commit 71c0bd2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/pack-version-check.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function main() {
5353
let tgzPath;
5454

5555
try {
56-
log(`Packing @fission-ai/openspec@${expected}...`);
56+
log(`Packing @minidoracat/openspec-tw@${expected}...`);
5757
const filename = npmPack();
5858
tgzPath = path.resolve(filename);
5959
log(`Created: ${tgzPath}`);
@@ -80,7 +80,7 @@ function main() {
8080
run('npm', ['install', tgzPath, '--silent', '--no-audit', '--no-fund'], { cwd: work, env });
8181

8282
// Run the installed CLI via Node to avoid bin resolution/platform issues
83-
const binRel = path.join('node_modules', '@fission-ai', 'openspec', 'bin', 'openspec.js');
83+
const binRel = path.join('node_modules', '@minidoracat', 'openspec-tw', 'bin', 'openspec.js');
8484
const actual = run(process.execPath, [binRel, '--version'], { cwd: work }).trim();
8585

8686
if (actual !== expected) {

0 commit comments

Comments
 (0)