@su-record/vibe 1.0.14 → 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.
- package/.claude/settings.local.json +3 -1
- package/bin/vibe +2 -3
- package/package.json +1 -1
package/bin/vibe
CHANGED
|
@@ -307,13 +307,12 @@ function setupCollaboratorAutoInstall(projectRoot) {
|
|
|
307
307
|
let modified = false;
|
|
308
308
|
|
|
309
309
|
// 기존 devDependencies에서 @su-record/vibe 제거 (npm install 블로킹 원인)
|
|
310
|
-
// vibe는 전역 설치로만 사용해야 함
|
|
311
310
|
if (pkg.devDependencies && pkg.devDependencies['@su-record/vibe']) {
|
|
312
311
|
delete pkg.devDependencies['@su-record/vibe'];
|
|
313
312
|
modified = true;
|
|
314
313
|
}
|
|
315
314
|
|
|
316
|
-
// 기존 postinstall/prepare에서 vibe update 제거 (
|
|
315
|
+
// 기존 postinstall/prepare에서 vibe update 제거 (레거시 정리)
|
|
317
316
|
if (pkg.scripts) {
|
|
318
317
|
const oldPatterns = [
|
|
319
318
|
/\s*&&\s*npx @su-record\/vibe update[^&|;]*/g,
|
|
@@ -341,7 +340,7 @@ function setupCollaboratorAutoInstall(projectRoot) {
|
|
|
341
340
|
|
|
342
341
|
if (modified) {
|
|
343
342
|
fs.writeFileSync(packageJsonPath, JSON.stringify(pkg, null, 2) + '\n');
|
|
344
|
-
log(' ✅ package.json 정리 완료 (vibe
|
|
343
|
+
log(' ✅ package.json 정리 완료 (레거시 vibe 설정 제거)\n');
|
|
345
344
|
}
|
|
346
345
|
} catch (e) {
|
|
347
346
|
log(' ⚠️ package.json 수정 실패: ' + e.message + '\n');
|