projectops 4.2.22 → 4.2.23
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/README.md +1 -1
- package/package.json +1 -1
- package/src/commands/interactive.js +8 -1
- package/src/ui/prompts.js +6 -6
- package/src/ui/status-cards.js +3 -3
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -405,7 +405,14 @@ function summarize({ mode, types, version, branch, deployTarget, publishTargets,
|
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
function modeLabel(m) {
|
|
408
|
-
return {
|
|
408
|
+
return {
|
|
409
|
+
full: "전체 설치 (버전관리 + 워크플로우 + 템플릿)",
|
|
410
|
+
version: "버전 관리 전용 (자동화 시스템)",
|
|
411
|
+
workflows: "워크플로우 전용 (GitHub Actions 빌드, 배포)",
|
|
412
|
+
issues: "이슈/PR 템플릿 전용",
|
|
413
|
+
skills: "AI 스킬 전용 (Claude, Cursor, Gemini, Codex, PI)",
|
|
414
|
+
update: "업데이트"
|
|
415
|
+
}[m] || m;
|
|
409
416
|
}
|
|
410
417
|
|
|
411
418
|
function utcNow(date = new Date()) {
|
package/src/ui/prompts.js
CHANGED
|
@@ -12,14 +12,14 @@ export async function selectMode({ update = null } = {}) {
|
|
|
12
12
|
const options = [];
|
|
13
13
|
if (update) {
|
|
14
14
|
const range = update.from ? `v${update.from} → v${update.to}` : `v${update.to}`;
|
|
15
|
-
options.push({ value: "update", label: `업데이트
|
|
15
|
+
options.push({ value: "update", label: `업데이트 (v${range})` });
|
|
16
16
|
}
|
|
17
17
|
options.push(
|
|
18
|
-
{ value: "full", label:
|
|
19
|
-
{ value: "version", label: "버전
|
|
20
|
-
{ value: "workflows", label: "
|
|
21
|
-
{ value: "issues", label: "
|
|
22
|
-
{ value: "skills", label: "AI
|
|
18
|
+
{ value: "full", label: "전체 설치 (버전관리 + 워크플로우 + 템플릿)" },
|
|
19
|
+
{ value: "version", label: "버전 관리 전용 (자동화 시스템)" },
|
|
20
|
+
{ value: "workflows", label: "워크플로우 전용 (GitHub Actions 빌드, 배포)" },
|
|
21
|
+
{ value: "issues", label: "이슈/PR 템플릿 전용" },
|
|
22
|
+
{ value: "skills", label: "AI 스킬 전용 (Claude, Cursor, Gemini, Codex, PI)" },
|
|
23
23
|
);
|
|
24
24
|
return engine.select({ message: "무엇을 설치할까요?", options });
|
|
25
25
|
}
|
package/src/ui/status-cards.js
CHANGED
|
@@ -84,10 +84,10 @@ export function printIdeStatus(statuses, out = (s) => process.stdout.write(s)) {
|
|
|
84
84
|
// 사용자가 "무슨 기준으로 신규/업데이트인지"를 바로 알도록 판정 근거를 화면에 밝힌다.
|
|
85
85
|
export function printInstallKind({ currentTemplateVersion = "", templateVersion = "" }, out = (s) => process.stdout.write(s)) {
|
|
86
86
|
if (currentTemplateVersion) {
|
|
87
|
-
out(`${GUT} ♻️ ${paint("업데이트", A.bold)}
|
|
88
|
-
out(`${GUT} ${paint("version.yml에 이전 통합 기록이 있습니다
|
|
87
|
+
out(`${GUT} ♻️ ${paint("업데이트", A.bold)} - 템플릿 ${paint(`v${currentTemplateVersion}`, A.dim)} → ${paint(`v${templateVersion}`, A.green)}\n`);
|
|
88
|
+
out(`${GUT} ${paint("version.yml에 이전 통합 기록이 있습니다 - 메뉴 맨 위 '업데이트'가 저장된 설정 그대로 반영합니다", A.dim)}\n`);
|
|
89
89
|
} else {
|
|
90
|
-
out(`${GUT} 🆕 ${paint("신규 통합", A.bold)}
|
|
90
|
+
out(`${GUT} 🆕 ${paint("신규 통합", A.bold)} - 이 프로젝트에 처음 설치합니다 (템플릿 ${paint(`v${templateVersion}`, A.green)})\n`);
|
|
91
91
|
out(`${GUT} ${paint("version.yml에 이전 통합 기록이 없어 신규로 봅니다", A.dim)}\n`);
|
|
92
92
|
}
|
|
93
93
|
out(`${GUT}\n`);
|