aboutsummaryrefslogtreecommitdiff
path: root/turbo.json
blob: 9b6ba7e4735818af195bc5a1b613b62a0f287fb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "$schema": "https://turbo.build/schema.json",
  "ui": "stream",
  "tasks": {
    "build": {
      "dependsOn": ["^build"],
      "inputs": ["$TURBO_DEFAULT$", ".env*", ".dev.vars"],
      "outputs": ["build/**", "public/build/**", "server/index.js"],
      "cache": true
    },
    "lint": {
      "dependsOn": ["^lint"]
    },
    "dev": {
      "cache": false,
      "persistent": true
    },
    "generate-migration": {
      "cache": false
    },
    "migrate:local": {
      "cache": false
    },
    "deploy": {
      "cache": true
    },
    "tail": {
      "cache": false,
      "persistent": true
    }
  }
}