chore: implement requested changes

This commit is contained in:
Ralph Khreish
2025-09-04 23:07:18 +02:00
parent 538d745023
commit 37a8955494
4 changed files with 78 additions and 17 deletions

View File

@@ -19,10 +19,10 @@
"build:packages": "npm run build:core && npm run build:cli",
"build:core": "cd packages/tm-core && npm run build",
"build:cli": "cd apps/cli && npm run build",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:fails": "node --experimental-vm-modules node_modules/.bin/jest --onlyFailures",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test": "vitest run",
"test:fails": "vitest run --changed",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "./tests/e2e/run_e2e.sh",
"test:e2e-report": "./tests/e2e/run_e2e.sh --analyze-log",
"postpack": "chmod +x dist/task-master.js dist/mcp-server.js",