diff --git a/libs/shutdown/package.json b/libs/shutdown/package.json index 48326e1..7e9d8ae 100644 --- a/libs/shutdown/package.json +++ b/libs/shutdown/package.json @@ -4,11 +4,11 @@ "description": "Graceful shutdown management for Stock Bot platform", "type": "module", "main": "dist/index.js", - "types": "dist/index.d.ts", - "scripts": { + "types": "dist/index.d.ts", "scripts": { "build": "tsc", "dev": "tsc --watch", - "clean": "rm -rf dist" + "clean": "rm -rf dist", + "test": "bun test" }, "dependencies": {}, "devDependencies": { diff --git a/turbo.json b/turbo.json index 86fbbb9..0796460 100644 --- a/turbo.json +++ b/turbo.json @@ -12,10 +12,9 @@ "dev": { "cache": false, "persistent": true - }, - "test": { + }, "test": { "dependsOn": ["build"], - "outputs": ["coverage/**"] + "outputs": [] }, "lint": { "dependsOn": ["^lint"]