summaryrefslogtreecommitdiff
path: root/turbo.json
blob: 85a9fd8bfe802ec48429fdab8a2113d12029a27f (plain)
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
{
  "$schema": "https://turborepo.com/schema.json",
  "tasks": {
    "build:dev": {
      "dependsOn": ["^build:dev"],
      "outputs": ["dist/**"]
    },
    "dev": {
      "dependsOn": ["build:dev", "^build:dev"],
      "cache": false,
      "persistent": true
    },
    "test": {
      "cache": false,
      "persistent": true
    },
    "build": {
      "dependsOn": ["^build"],
      "outputs": ["dist/**"],
      "inputs": ["src/**", "Cargo.toml", "Cargo.lock", "package.json"]
    },
    "clean": {
      "cache": false
    }
  }
}