@su-record/vibe 1.0.13 → 1.0.15

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.
@@ -7,7 +7,9 @@
7
7
  "Bash(git stash:*)",
8
8
  "Bash(curl:*)",
9
9
  "Bash(python3:*)",
10
- "Bash(npm search:*)"
10
+ "Bash(npm search:*)",
11
+ "Bash(npx @su-record/vibe@latest update:*)",
12
+ "Bash(pnpm install)"
11
13
  ],
12
14
  "deny": [],
13
15
  "ask": []
package/bin/vibe CHANGED
@@ -306,17 +306,13 @@ function setupCollaboratorAutoInstall(projectRoot) {
306
306
 
307
307
  let modified = false;
308
308
 
309
- // devDependencies vibe 추가
310
- if (!pkg.devDependencies) {
311
- pkg.devDependencies = {};
312
- }
313
- if (!pkg.devDependencies['@su-record/vibe']) {
314
- pkg.devDependencies['@su-record/vibe'] = `^${vibeVersion}`;
309
+ // 기존 devDependencies에서 @su-record/vibe 제거 (npm install 블로킹 원인)
310
+ if (pkg.devDependencies && pkg.devDependencies['@su-record/vibe']) {
311
+ delete pkg.devDependencies['@su-record/vibe'];
315
312
  modified = true;
316
313
  }
317
314
 
318
- // 기존 postinstall/prepare에서 vibe update 제거 (CI/prd 블로킹 문제)
319
- // vibe update는 개발자가 직접 실행해야 함
315
+ // 기존 postinstall/prepare에서 vibe update 제거 (레거시 정리)
320
316
  if (pkg.scripts) {
321
317
  const oldPatterns = [
322
318
  /\s*&&\s*npx @su-record\/vibe update[^&|;]*/g,
@@ -344,9 +340,7 @@ function setupCollaboratorAutoInstall(projectRoot) {
344
340
 
345
341
  if (modified) {
346
342
  fs.writeFileSync(packageJsonPath, JSON.stringify(pkg, null, 2) + '\n');
347
- log(' ✅ package.json 협업자 자동 설치 설정 추가\n');
348
- } else {
349
- log(' ℹ️ package.json 협업 설정 이미 존재\n');
343
+ log(' ✅ package.json 정리 완료 (레거시 vibe 설정 제거)\n');
350
344
  }
351
345
  } catch (e) {
352
346
  log(' ⚠️ package.json 수정 실패: ' + e.message + '\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"