From 0690e28d02bc96124c6eb560f39210c416b514f7 Mon Sep 17 00:00:00 2001 From: Guillaume ARM Date: Thu, 11 Jun 2026 01:35:58 +0200 Subject: [PATCH] chore(mcp): simplify bridge check script --- tools/mcp-bridge/package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/mcp-bridge/package.json b/tools/mcp-bridge/package.json index 6cbe44e..aaae791 100644 --- a/tools/mcp-bridge/package.json +++ b/tools/mcp-bridge/package.json @@ -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",