@su-record/vibe 1.0.0 → 1.0.1
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 +2 -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
|
|