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.
- package/.npmignore +12 -0
- package/index.js +1 -1
- package/package.json +5 -1
package/.npmignore
ADDED
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: ['
|
|
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.
|
|
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
|
},
|