jvibe 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/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "jvibe",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "文档驱动的 AI 辅助开发系统 - Doc-driven AI-assisted development system for Claude Code",
5
5
  "main": "bin/jvibe.js",
6
6
  "bin": {
7
- "jvibe": "./bin/jvibe.js"
7
+ "jvibe": "bin/jvibe.js"
8
8
  },
9
9
  "scripts": {
10
10
  "test": "echo \"No tests yet\""
package/scripts/init.js CHANGED
@@ -71,7 +71,7 @@ async function init(options = {}) {
71
71
  } else {
72
72
  console.log(chalk.gray(' 创建 .gitignore...'));
73
73
  await fs.copy(
74
- path.join(TEMPLATE_DIR, '.gitignore'),
74
+ path.join(TEMPLATE_DIR, 'gitignore.template'),
75
75
  gitignorePath
76
76
  );
77
77
  }
@@ -0,0 +1,29 @@
1
+ # macOS
2
+ .DS_Store
3
+ .AppleDouble
4
+ .LSOverride
5
+
6
+ # Node.js
7
+ node_modules/
8
+ npm-debug.log*
9
+ yarn-debug.log*
10
+ yarn-error.log*
11
+
12
+ # IDE
13
+ .vscode/
14
+ .idea/
15
+ *.swp
16
+ *.swo
17
+
18
+ # Build
19
+ dist/
20
+ build/
21
+ *.log
22
+
23
+ # Environment
24
+ .env
25
+ .env.local
26
+ .env.*.local
27
+
28
+ # JVibe
29
+ .claude/settings.local.json