diff --git a/turbo.json b/turbo.json index bb6daddea..9ce0d76f5 100644 --- a/turbo.json +++ b/turbo.json @@ -2,14 +2,17 @@ "$schema": "https://turbo.build/schema.v1.json", "pipeline": { "build": { - "outputs": [] + "outputs": ["dist/**", "lib/**"] }, "test:dev": { "interactive": true, "cache": false, "persistent": true }, - "test": { "cache": false }, + "test": { + "dependsOn": ["build"], + "cache": false + }, "test:update": { "cache": false }, "test:unit": {"cache":false}, "test:integration": {"cache": false},