create-saas-starter-workspace 0.1.6 → 0.1.7

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.7 — 2026-06-14
4
+
5
+ - connect-repos 실패 안내를 코드스페이스 현실에 맞게 정정: 코드스페이스 기본 토큰은 레포 생성 권한이 없어, 복구는 `unset GITHUB_TOKEN GH_TOKEN` → `gh auth login --web -s repo` → 재실행이 필요하다(이전 안내엔 unset 단계가 빠져 있었다). 실측으로 확인된 흐름.
6
+
3
7
  ## 0.1.6 — 2026-06-13
4
8
 
5
9
  - **소유 모델: 세 레이어를 학생 GitHub 계정에 자동 백업.** 새 `scripts/connect-repos.mjs`가 루트·`web/`·`mobile/`을 각각 private 원격 `<name>-workspace`·`<name>-web`·`<name>-mobile`에 연결한다(`gh repo create --source --push`). 멱등·비차단이며 부트스트랩(setup.sh/ps1·코드스페이스)이 gh 로그인 직후 한 번 호출한다. 소유(git 연결)와 배포(`/go-live`·`/kickoff`의 클라우드 프로비저닝)를 분리 — 코드스페이스 휘발성 대비 + go-live 이전 작업의 백업.
@@ -83,8 +83,10 @@ if (failed > 0) {
83
83
  console.log("");
84
84
  console.log(" 남은 ⚠는 보통 둘 중 하나입니다:");
85
85
  console.log(" 1) 같은 이름의 레포가 이미 있음 → 지우거나 다른 프로젝트명으로 다시 만드세요.");
86
- console.log(" 2) 레포 생성 권한 부족(코드스페이스 기본 토큰 등) gh auth login 으로 본인 계정 권한을 받은 뒤");
87
- console.log(" 다시: node scripts/connect-repos.mjs");
86
+ console.log(" 2) 레포 생성 권한 부족 코드스페이스라면 아래를 순서대로 실행하세요:");
87
+ console.log(" unset GITHUB_TOKEN GH_TOKEN");
88
+ console.log(" gh auth login --git-protocol https --web -s repo (나오는 주소를 Cmd/Ctrl+클릭해 코드로 승인)");
89
+ console.log(" node scripts/connect-repos.mjs");
88
90
  }
89
91
  console.log(` (연결 ${created} · 기존 ${skipped} · 남음 ${failed})`);
90
92
  console.log("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-saas-starter-workspace",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "강의용 SaaS 워크스페이스(web + mobile + 에이전트 도구)를 한 번에 만드는 생성기. 생성 → 의존성 설치 → doctor 점검까지 한 흐름.",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE",