job51-gitlab-cr-node-jt-1 1.3.5 → 1.3.7

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 (3) hide show
  1. package/.npmignore +12 -0
  2. package/index.js +1 -1
  3. package/package.json +5 -1
package/.npmignore ADDED
@@ -0,0 +1,12 @@
1
+ node_modules/
2
+ .env
3
+ .env.example
4
+ .git/
5
+ .gitignore
6
+ *.log
7
+ coverage/
8
+ .nyc_output/
9
+ dist/
10
+ build/
11
+ .DS_Store
12
+ Thumbs.db
package/index.js CHANGED
@@ -531,7 +531,7 @@ function runClaudeCommand(promptContent) {
531
531
  shell: true, // ✅ 启用 shell,支持别名和完整 PATH
532
532
  cwd: __dirname, // ✅ 设置工作目录为当前脚本所在目录
533
533
  env: process.env,
534
- stdio: ['pipe', 'pipe', 'pipe']
534
+ stdio: ['ignore', 'pipe', 'pipe']
535
535
  });
536
536
 
537
537
  let stdout = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "job51-gitlab-cr-node-jt-1",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "description": "GitLab merge request code review tool with AI-powered analysis",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -14,6 +14,10 @@
14
14
  "keywords": [],
15
15
  "author": "Linton Cao",
16
16
  "license": "MIT",
17
+ "files": [
18
+ "**/*",
19
+ ".claude/**/*"
20
+ ],
17
21
  "dependencies": {
18
22
  "axios": "^1.13.3"
19
23
  },