relayax-cli 0.4.32 β 0.4.34
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/install.js
CHANGED
|
@@ -398,7 +398,11 @@ function registerInstall(program) {
|
|
|
398
398
|
(0, installer_js_1.printRequiresCheck)(requiresResults);
|
|
399
399
|
const setupCmd = resolvedAgent.commands.find((c) => c.name.startsWith('setup-'));
|
|
400
400
|
if (setupCmd && requiresResults.some((r) => r.status === 'missing' || r.status === 'warn')) {
|
|
401
|
-
|
|
401
|
+
const toolNames = selectedTools
|
|
402
|
+
? selectedTools.map((t) => t.name).slice(0, 2).join(' λλ ')
|
|
403
|
+
: 'Claude Code';
|
|
404
|
+
console.log(`\n \x1b[36mπ μ€μ μ΄ νμν©λλ€.\x1b[0m`);
|
|
405
|
+
console.log(` \x1b[36m ${toolNames}λ₯Ό μ΄κ³ \x1b[1m/${setupCmd.name}\x1b[0m\x1b[36m μ μ
λ ₯νμΈμ\x1b[0m`);
|
|
402
406
|
}
|
|
403
407
|
}
|
|
404
408
|
}
|
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;
|