projectops 4.2.23 → 4.2.24
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/core/breaking-check.js +5 -5
- package/src/ui/status-cards.js +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -46,10 +46,10 @@ export async function runBreakingCheck({ cwd, tempDir, templateVersion, askYesNo
|
|
|
46
46
|
// 긴 본문 래핑이 ║ 박스 경계를 붕괴시켰다. 버전·제목만 한 줄씩, 전문은 선택 열람.)
|
|
47
47
|
const e = (s = "") => process.stderr.write(s + "\n");
|
|
48
48
|
e("");
|
|
49
|
-
e(`⚠️ BREAKING CHANGES (v${current}
|
|
49
|
+
e(`⚠️ BREAKING CHANGES (v${current} -> v${templateVersion}) - CRITICAL ${critical.length}건, WARNING ${warnings.length}건`);
|
|
50
50
|
e("");
|
|
51
|
-
for (const c of critical) e(` ❗ [CRITICAL] ${c.version}
|
|
52
|
-
for (const w of warnings) e(` ⚠️ [WARNING] ${w.version}
|
|
51
|
+
for (const c of critical) e(` ❗ [CRITICAL] ${c.version} - ${c.title || ""}`);
|
|
52
|
+
for (const w of warnings) e(` ⚠️ [WARNING] ${w.version} - ${w.title || ""}`);
|
|
53
53
|
e("");
|
|
54
54
|
|
|
55
55
|
if (askYesNo) {
|
|
@@ -58,13 +58,13 @@ export async function runBreakingCheck({ cwd, tempDir, templateVersion, askYesNo
|
|
|
58
58
|
if (detail === true) {
|
|
59
59
|
for (const it of [...critical, ...warnings]) {
|
|
60
60
|
e("");
|
|
61
|
-
e(`■ ${it.version}
|
|
61
|
+
e(`■ ${it.version} - ${it.title || ""}`);
|
|
62
62
|
e(` ${it.message || ""}`);
|
|
63
63
|
}
|
|
64
64
|
e("");
|
|
65
65
|
}
|
|
66
66
|
} else {
|
|
67
|
-
e(" 상세
|
|
67
|
+
e(" 상세 내용, 조치 방법: .github/config/breaking-changes.json 참고");
|
|
68
68
|
e(` (${BC_URL})`);
|
|
69
69
|
e("");
|
|
70
70
|
}
|
package/src/ui/status-cards.js
CHANGED
|
@@ -19,7 +19,7 @@ export function printDetectionLog({ types = [], version = "", branch = "" }, out
|
|
|
19
19
|
} else {
|
|
20
20
|
out(`${GUT} ${paint("─", A.dim)} 마커 파일 없음 → ${paint("basic", A.bold)} (직접 선택 가능)\n`);
|
|
21
21
|
}
|
|
22
|
-
out(`${GUT} ${OK} 버전: ${paint(`v${version}`, A.green)}
|
|
22
|
+
out(`${GUT} ${OK} 버전: ${paint(`v${version}`, A.green)} - 브랜치: ${paint(branch, A.green)}\n`);
|
|
23
23
|
out(`${GUT}\n`);
|
|
24
24
|
}
|
|
25
25
|
|