@team-semicolon/semo-cli 3.0.6 → 3.0.7

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -59,7 +59,7 @@ const child_process_1 = require("child_process");
59
59
  const fs = __importStar(require("fs"));
60
60
  const path = __importStar(require("path"));
61
61
  const os = __importStar(require("os"));
62
- const VERSION = "3.0.6";
62
+ const VERSION = "3.0.7";
63
63
  const PACKAGE_NAME = "@team-semicolon/semo-cli";
64
64
  // === 버전 비교 유틸리티 ===
65
65
  /**
@@ -520,6 +520,8 @@ async function downloadExtensions(cwd, packages, force) {
520
520
  continue;
521
521
  }
522
522
  removeRecursive(destPath);
523
+ // 상위 디렉토리 생성 (biz/discovery -> biz/ 먼저 생성)
524
+ fs.mkdirSync(path.dirname(destPath), { recursive: true });
523
525
  copyRecursive(srcPath, destPath);
524
526
  }
525
527
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@team-semicolon/semo-cli",
3
- "version": "3.0.6",
3
+ "version": "3.0.7",
4
4
  "description": "SEMO CLI - AI Agent Orchestration Framework Installer",
5
5
  "main": "dist/index.js",
6
6
  "bin": {