diff options
Diffstat (limited to 'turbo.json')
| -rw-r--r-- | turbo.json | 28 |
1 files changed, 6 insertions, 22 deletions
@@ -2,39 +2,23 @@ "$schema": "https://turbo.build/schema.json", "pipeline": { "build": { - "outputs": [ - ".next/**", - "!.next/cache/**" - ] + "outputs": [".next/**", "!.next/cache/**"] }, "deploy": { - "dependsOn": [ - "build", - "test", - "lint" - ] + "dependsOn": ["build", "test", "lint"] }, "db:push": {}, "db:studio": {}, "test": { - "dependsOn": [ - "build" - ], - "inputs": [ - "src/**/*.tsx", - "src/**/*.ts", - "test/**/*.ts", - "test/**/*.tsx" - ] + "dependsOn": ["build"], + "inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"] }, "lint": {}, "type-check": {}, "dev": { - "env": [ - "NODE_ENV=development" - ], + "env": ["NODE_ENV=development"], "cache": false, "persistent": true } } -}
\ No newline at end of file +} |