Skip to content

Commit 5ae2584

Browse files
committed
fix: include dev dependencies
1 parent 5348a3a commit 5ae2584

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/code_health.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
node-version-file: package.json
7575
cache: "npm"
7676
- name: Install dependencies & build
77-
run: npm ci --omit=dev --include=@modelcontextprotocol/inspector
77+
run: npm ci
7878
- run: npm run inspect -- --cli --method tools/list --connectionString "mongodb://localhost"
7979

8080
coverage:

tsconfig.build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"strict": true,
99
"strictNullChecks": true,
1010
"esModuleInterop": true,
11-
"types": ["node", "jest"],
11+
"types": ["node"],
1212
"sourceMap": true,
1313
"skipLibCheck": true,
1414
"resolveJsonModule": true,

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "./tsconfig.build.json",
33
"compilerOptions": {
44
"rootDir": ".",
5-
"types": ["jest"],
5+
"types": ["node", "jest", "jest-extended"],
66
"skipLibCheck": true
77
},
88
"include": ["**/*"]

0 commit comments

Comments
 (0)