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.
- package/dist/commands/package.js +2 -1
- package/package.json +1 -1
package/dist/commands/package.js
CHANGED
|
@@ -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
|
|
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;
|