diff --git a/turbo.json b/turbo.json index 7b35983..2f1cc0c 100644 --- a/turbo.json +++ b/turbo.json @@ -27,19 +27,33 @@ "cache": false, "persistent": true }, - "lint": {}, - "lint:fix": {}, + "lint": { + "dependsOn": [ + "^lint" + ] + }, + "lint:fix": { + "dependsOn": [ + "lint", + "^lint" + ] + }, "test": { "outputs": [ "coverage/**" ], - "dependsOn": [] + "dependsOn": [ + "^test" + ] }, "test:dev": { "outputs": [ "coverage/**" ], - "dependsOn": [] + "dependsOn": [ + "test", + "^test" + ] }, "typecheck": { "dependsOn": [