chore(mcp): simplify bridge check script

This commit is contained in:
Guillaume ARM 2026-06-11 01:35:58 +02:00
parent 8de3d24af2
commit 0690e28d02

View File

@ -5,10 +5,9 @@
"type": "module",
"scripts": {
"build": "tsc",
"build:check": "tsc --noEmit true",
"eslint": "eslint . --cache --cache-location node_modules/.cache/eslint/",
"clean": "rm -rf node_modules/.cache/tsc node_modules/.cache/eslint",
"check": "npm run build:check && npm run eslint",
"check": "npm run eslint",
"test:all": "npm run check && npm run build && npm run test",
"test:ci": "npm run test:all && npm run test:integration",
"dev": "tsx src/index.ts",