@su-record/vibe 1.1.4 → 1.1.6
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/bin/vibe +3 -3
- package/package.json +1 -1
- package/templates/hooks-template.json +10 -0
package/bin/vibe
CHANGED
|
@@ -514,9 +514,9 @@ async function init(projectName) {
|
|
|
514
514
|
ensureDir(path.join(vibeDir, dir));
|
|
515
515
|
});
|
|
516
516
|
|
|
517
|
-
// .vibe/mcp
|
|
517
|
+
// .vibe/mcp/를 gitignore에 추가
|
|
518
518
|
const mcpGitignorePath = path.join(projectRoot, '.gitignore');
|
|
519
|
-
const mcpIgnore = '.vibe/mcp/
|
|
519
|
+
const mcpIgnore = '.vibe/mcp/';
|
|
520
520
|
if (fs.existsSync(mcpGitignorePath)) {
|
|
521
521
|
let mcpGitignore = fs.readFileSync(mcpGitignorePath, 'utf-8');
|
|
522
522
|
if (!mcpGitignore.includes(mcpIgnore)) {
|
|
@@ -1159,7 +1159,7 @@ async function update() {
|
|
|
1159
1159
|
|
|
1160
1160
|
// .gitignore에 추가
|
|
1161
1161
|
const gitignorePath2 = path.join(projectRoot, '.gitignore');
|
|
1162
|
-
const mcpIgnore = '.vibe/mcp/
|
|
1162
|
+
const mcpIgnore = '.vibe/mcp/';
|
|
1163
1163
|
if (fs.existsSync(gitignorePath2)) {
|
|
1164
1164
|
let gitignore = fs.readFileSync(gitignorePath2, 'utf-8');
|
|
1165
1165
|
if (!gitignore.includes(mcpIgnore)) {
|
package/package.json
CHANGED