Skip to content

Commit a83af74

Browse files
committed
Update build to build and test all apps
1 parent 38021b8 commit a83af74

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,16 @@
2020
"type": "commonjs",
2121
"main": "index.js",
2222
"scripts": {
23-
"test": "cd mcp-openapi && npm install && npm run test"
23+
"install:all": "npm install && cd mcp-openapi && npm install && cd ../mcp-test-client && npm install && cd ../sample-banking-api && npm install",
24+
"build": "npm run build:mcp-openapi && npm run build:mcp-test-client && npm run build:sample-banking-api",
25+
"build:mcp-openapi": "cd mcp-openapi && npm run build",
26+
"build:mcp-test-client": "cd mcp-test-client && npm run build",
27+
"build:sample-banking-api": "cd sample-banking-api && npm run build",
28+
"test": "npm run test:mcp-openapi && npm run test:mcp-test-client",
29+
"test:mcp-openapi": "cd mcp-openapi && npm run test",
30+
"test:mcp-test-client": "cd mcp-test-client && npm run test",
31+
"clean": "rm -rf mcp-openapi/dist mcp-test-client/dist sample-banking-api/dist",
32+
"dev:banking-api": "cd sample-banking-api && npm run server:dev",
33+
"start:banking-api": "cd sample-banking-api && npm run server"
2434
}
2535
}

0 commit comments

Comments
 (0)