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 CHANGED
@@ -7,7 +7,7 @@
7
7
  > 이슈 등록부터 커밋, 보고서, 배포까지. 개발자는 코드만 작성하세요.
8
8
 
9
9
  <!-- AUTO-VERSION-SECTION: DO NOT EDIT MANUALLY -->
10
- ## 최신 버전 : v4.2.22 (2026-07-20)
10
+ ## 최신 버전 : v4.2.23 (2026-07-20)
11
11
 
12
12
  [전체 버전 기록 보기](CHANGELOG.md)
13
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projectops",
3
- "version": "4.2.23",
3
+ "version": "4.2.24",
4
4
  "description": "ProjectOps — 완전 자동화 GitHub 프로젝트 관리 템플릿 통합 CLI",
5
5
  "keywords": [
6
6
  "devops",
@@ -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} v${templateVersion}) CRITICAL ${critical.length} · WARNING ${warnings.length}건`);
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} ${c.title || ""}`);
52
- for (const w of warnings) e(` ⚠️ [WARNING] ${w.version} ${w.title || ""}`);
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} ${it.title || ""}`);
61
+ e(`■ ${it.version} - ${it.title || ""}`);
62
62
  e(` ${it.message || ""}`);
63
63
  }
64
64
  e("");
65
65
  }
66
66
  } else {
67
- e(" 상세 내용·조치 방법: .github/config/breaking-changes.json 참고");
67
+ e(" 상세 내용, 조치 방법: .github/config/breaking-changes.json 참고");
68
68
  e(` (${BC_URL})`);
69
69
  e("");
70
70
  }
@@ -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)} · 브랜치: ${paint(branch, A.green)}\n`);
22
+ out(`${GUT} ${OK} 버전: ${paint(`v${version}`, A.green)} - 브랜치: ${paint(branch, A.green)}\n`);
23
23
  out(`${GUT}\n`);
24
24
  }
25
25