projectops 4.2.33 → 4.2.35
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 +11 -4
- package/package.json +1 -1
- package/src/core/copy/util.js +3 -1
- package/src/core/exclusions.js +3 -0
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
> 이슈 등록부터 커밋, 보고서, 배포까지. 개발자는 코드만 작성하세요.
|
|
8
8
|
|
|
9
9
|
<!-- AUTO-VERSION-SECTION: DO NOT EDIT MANUALLY -->
|
|
10
|
-
## 최신 버전 : v4.2.
|
|
10
|
+
## 최신 버전 : v4.2.34 (2026-07-26)
|
|
11
11
|
|
|
12
12
|
[전체 버전 기록 보기](CHANGELOG.md)
|
|
13
13
|
|
|
@@ -246,17 +246,24 @@ Settings → Actions → General
|
|
|
246
246
|
|
|
247
247
|
## 문서
|
|
248
248
|
|
|
249
|
+
전체 목록은 **[문서 인덱스](docs/README.md)**를 참고하세요.
|
|
250
|
+
|
|
249
251
|
| 문서 | 설명 |
|
|
250
252
|
|------|------|
|
|
253
|
+
| [📚 문서 인덱스](docs/README.md) | docs 전체를 목적별로 안내 |
|
|
251
254
|
| [Agent Skills 가이드](docs/SKILLS.md) | 24종 Skills 용도, 사용법, 전체 개발 사이클 흐름 |
|
|
252
|
-
| [NPX 마법사 가이드](docs/NPX-WIZARD.md) | npx projectops
|
|
255
|
+
| [NPX 마법사 가이드](docs/NPX-WIZARD.md) | npx projectops 통합, 프로젝트 성격(intent), 배포/publish 2축, 레거시 자동 마이그레이션 |
|
|
253
256
|
| [통합 스크립트 가이드](docs/TEMPLATE-INTEGRATOR.md) | 구 integrator 지원 종료(EOF) 안내 |
|
|
254
257
|
| [버전 관리](docs/VERSION-CONTROL.md) | version.yml, 자동 버전 증가 |
|
|
255
|
-
| [체인지로그 자동화](docs/CHANGELOG-AUTOMATION.md) | 릴리스 노트 provider 사다리, CodeRabbit 연동 |
|
|
258
|
+
| [체인지로그 자동화](docs/CHANGELOG-AUTOMATION.md) | 릴리스 PR 흐름, 릴리스 노트 provider 사다리, CodeRabbit 연동 |
|
|
256
259
|
| [PR Preview](docs/PR-PREVIEW.md) | 임시 서버 배포 시스템 |
|
|
257
|
-
| [Flutter CI/CD](docs/FLUTTER-CICD-OVERVIEW.md) | iOS/Android 자동
|
|
260
|
+
| [Flutter CI/CD](docs/FLUTTER-CICD-OVERVIEW.md) | iOS/Android 자동 배포, GitHub Secrets 전체 목록 |
|
|
261
|
+
| [Flutter 마법사](docs/FLUTTER-TESTFLIGHT-WIZARD.md) | [TestFlight](docs/FLUTTER-TESTFLIGHT-WIZARD.md) / [Play Store](docs/FLUTTER-PLAYSTORE-WIZARD.md) / [Firebase](docs/FLUTTER-FIREBASE-WIZARD.md) 배포 설정 마법사 |
|
|
258
262
|
| [SSH+Docker 배포](docs/SSH-DOCKER-DEPLOYMENT-GUIDE.md) | SSH 접속 서버에 Docker 배포 (Synology·AWS EC2 등) |
|
|
259
263
|
| [이슈 자동화](docs/ISSUE-AUTOMATION.md) | Issue Helper, QA 봇 |
|
|
264
|
+
| [GitHub Projects 동기화](docs/PROJECTS-SYNC.md) | Issue Label ↔ Projects Status 동기화 ([마법사](docs/GITHUB-PROJECTS-SYNC-WIZARD.md)) |
|
|
265
|
+
| [브랜치 네이밍 규칙](docs/BRANCH-CONVENTION.md) | `YYYYMMDD_#번호_제목` 규칙과 의존 소비자 (유지보수자용) |
|
|
266
|
+
| [워크플로우 주석 표준](docs/WORKFLOW-COMMENT-GUIDELINES.md) | 주석 컨벤션, 파일별 적용 현황 (기여자용) |
|
|
260
267
|
| [트러블슈팅](docs/TROUBLESHOOTING.md) | 자주 발생하는 문제 해결 |
|
|
261
268
|
|
|
262
269
|
---
|
package/package.json
CHANGED
package/src/core/copy/util.js
CHANGED
|
@@ -16,9 +16,11 @@ export function copyUtilModules(tempDir, type, { force = false } = {}, targetRoo
|
|
|
16
16
|
copyDirSync(src, dst);
|
|
17
17
|
|
|
18
18
|
// 하위 디렉토리 개수 = 모듈 수 (.sh: for dir in "$util_dst"/*/)
|
|
19
|
+
// `_` 로 시작하는 폴더는 모듈이 아니라 모듈들이 공유하는 자산이다
|
|
20
|
+
// (예: flutter/_shared — 마법사 3종 공통 CSS/JS). 개수에서 제외한다.
|
|
19
21
|
let moduleCount = 0;
|
|
20
22
|
for (const e of readdirSync(dst, { withFileTypes: true })) {
|
|
21
|
-
if (e.isDirectory()) moduleCount++;
|
|
23
|
+
if (e.isDirectory() && !e.name.startsWith("_")) moduleCount++;
|
|
22
24
|
}
|
|
23
25
|
return { copied: true, moduleCount };
|
|
24
26
|
}
|
package/src/core/exclusions.js
CHANGED