@infograb/gitlab-openapi-mcp 1.0.3 → 1.0.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.
- package/bin/start.js +3 -3
- package/package.json +2 -2
package/bin/start.js
CHANGED
|
@@ -4,17 +4,17 @@ const { execSync } = require('child_process');
|
|
|
4
4
|
|
|
5
5
|
// 의존성 설치 (최초 실행 시)
|
|
6
6
|
try {
|
|
7
|
-
execSync('npx
|
|
7
|
+
execSync('npx npm install', { stdio: 'inherit' });
|
|
8
8
|
} catch (e) {
|
|
9
9
|
// 무시
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
// 빌드 (최초 실행 시)
|
|
13
13
|
try {
|
|
14
|
-
execSync('npx
|
|
14
|
+
execSync('npx npm build', { stdio: 'inherit' });
|
|
15
15
|
} catch (e) {
|
|
16
16
|
// 무시
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
// 서버 실행
|
|
20
|
-
execSync('npx
|
|
20
|
+
execSync('npx next dev -p 9200', { stdio: 'inherit' });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infograb/gitlab-openapi-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "GitLab OpenAPI MCP",
|
|
6
6
|
"homepage": "https://gitlab.com/innfograb/ai/gitlab-mcp-agent",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"./*"
|
|
11
11
|
],
|
|
12
12
|
"bin": {
|
|
13
|
-
"
|
|
13
|
+
"node": "./bin/start.js"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "next build",
|