diff --git a/turbo.json b/turbo.json index 58facaa..369034b 100644 --- a/turbo.json +++ b/turbo.json @@ -1,15 +1,17 @@ { "$schema": "https://turbo.build/schema.json", - "globalDependencies": ["**/.env.*local"], "tasks": { "build": { "dependsOn": ["^build"], + "inputs": ["$TURBO_DEFAULT$", ".env*"], "outputs": [".next/**", "!.next/cache/**"] }, - "lint": {}, + "lint": { + "dependsOn": ["^lint"] + }, "dev": { "cache": false, "persistent": true } } -} +}k