-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathturbo.jsonc
More file actions
29 lines (29 loc) · 853 Bytes
/
turbo.jsonc
File metadata and controls
29 lines (29 loc) · 853 Bytes
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
// We use turbo repo for frontend web development
// this can be invoked by doing `pnpm dev` to run a dev env.
{
"$schema": "https://turborepo.com/schema.json",
"ui": "tui",
"tasks": {
"dev": {
"persistent": true,
"cache": false
},
"lint:fix": {},
"@scufflecloud/proto#build": {
"cache": false,
"persistent": false
},
"@scufflecloud/dashboard#dev": {
// We want the proto#build to happen before the dashboard#dev is run otherwise
// typescript will complain about types missing.
"dependsOn": [
"@scufflecloud/proto#build"
],
"with": [
"@scufflecloud/proto#dev"
],
"persistent": true,
"cache": false
}
}
}