@su-record/vibe 1.1.4 → 1.1.5

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.
Files changed (2) hide show
  1. package/bin/vibe +3 -3
  2. package/package.json +1 -1
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/node_modules를 gitignore에 추가
517
+ // .vibe/mcp/를 gitignore에 추가
518
518
  const mcpGitignorePath = path.join(projectRoot, '.gitignore');
519
- const mcpIgnore = '.vibe/mcp/node_modules';
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/node_modules';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework",
5
5
  "bin": {
6
6
  "vibe": "./bin/vibe"