diff options
| -rw-r--r-- | package.json | 1 | ||||
| -rw-r--r-- | turbo.json | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/package.json b/package.json index 6effc7a8..cf2de668 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "format:fix": "turbo --no-daemon format:fix --continue", "lint": "turbo --no-daemon lint --continue", "lint:fix": "turbo --no-daemon lint:fix --continue", + "test": "turbo --no-daemon test", "typecheck": "turbo --no-daemon typecheck", "preflight": "turbo run --no-daemon typecheck lint format", "preflight:fix": "turbo run --no-daemon typecheck lint:fix format:fix" @@ -57,6 +57,12 @@ "node_modules/.cache/tsbuildinfo.json" ] }, + "test": { + "dependsOn": [ + "^topo" + ], + "cache": false + }, "clean": { "cache": false }, |
