mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-08 22:31:30 +01:00
36 lines
702 B
JSON
36 lines
702 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"env": ["IS_STANDALONE"],
|
|
"dependsOn": ["^build"],
|
|
"outputs": [
|
|
"build/**",
|
|
"storybook-static/**",
|
|
".next/**",
|
|
"!.next/cache/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint:eslint": {
|
|
"dependsOn": ["^lint:eslint"]
|
|
},
|
|
"lint:typescript": {
|
|
"dependsOn": ["^lint:typescript"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"start": {
|
|
"dependsOn": ["build"],
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|