relayax-cli 0.4.32 → 0.4.33

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.
@@ -429,7 +429,8 @@ function registerPackage(program) {
429
429
  // ─── 재패키징 (contents 매니페스트 기반 동기화) ───
430
430
  const yamlContent = fs_1.default.readFileSync(relayYamlPath, 'utf-8');
431
431
  const config = js_yaml_1.default.load(yamlContent);
432
- const contents = config.contents ?? [];
432
+ const rawContents = config.contents;
433
+ const contents = Array.isArray(rawContents) ? rawContents : [];
433
434
  // 기존 source 필드 → contents 마이그레이션 안내
434
435
  if (!config.contents && config.source) {
435
436
  const legacySource = config.source;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "relayax-cli",
3
- "version": "0.4.32",
3
+ "version": "0.4.33",
4
4
  "description": "RelayAX Agent Team Marketplace CLI - Install and manage agent teams",
5
5
  "main": "dist/index.js",
6
6
  "bin": {