27 lines
521 B
JSON
27 lines
521 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"globalDependencies": ["pnpm-lock.yaml"],
|
|
"globalEnv": ["NODE_ENV"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build:staging": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"preview": {
|
|
"dependsOn": ["build"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [],
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
},
|
|
"extends": ["//"]
|
|
}
|