@su-record/vibe 1.0.0 → 1.0.2
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 +9 -0
- package/bin/vibe +5 -2
- package/package.json +1 -1
package/bin/vibe
CHANGED
|
@@ -106,11 +106,11 @@ function setupCollaboratorAutoInstall(projectRoot) {
|
|
|
106
106
|
pkg.scripts = {};
|
|
107
107
|
}
|
|
108
108
|
if (!pkg.scripts.postinstall) {
|
|
109
|
-
pkg.scripts.postinstall = 'vibe update --silent';
|
|
109
|
+
pkg.scripts.postinstall = 'npx @su-record/vibe update --silent';
|
|
110
110
|
modified = true;
|
|
111
111
|
} else if (!pkg.scripts.postinstall.includes('vibe update')) {
|
|
112
112
|
// 기존 postinstall이 있으면 vibe update 추가
|
|
113
|
-
pkg.scripts.postinstall = `${pkg.scripts.postinstall} && vibe update --silent`;
|
|
113
|
+
pkg.scripts.postinstall = `${pkg.scripts.postinstall} && npx @su-record/vibe update --silent`;
|
|
114
114
|
modified = true;
|
|
115
115
|
}
|
|
116
116
|
|
|
@@ -545,6 +545,9 @@ async function update() {
|
|
|
545
545
|
}
|
|
546
546
|
}
|
|
547
547
|
|
|
548
|
+
// 협업자 자동 설치 설정 (update에서도 실행)
|
|
549
|
+
setupCollaboratorAutoInstall(projectRoot);
|
|
550
|
+
|
|
548
551
|
// MCP 서버 등록 확인
|
|
549
552
|
const { execSync } = require('child_process');
|
|
550
553
|
|