mirror of
https://github.com/morten-olsen/reservoir.git
synced 2026-02-07 17:36:24 +01:00
38 lines
598 B
JSON
38 lines
598 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
"public/**"
|
|
],
|
|
"inputs": [
|
|
"src/**/*.tsx",
|
|
"src/**/*.ts",
|
|
"./tsconfig.*",
|
|
"../../pnpm-lock.yaml"
|
|
]
|
|
},
|
|
"test": {
|
|
"cache": false
|
|
},
|
|
"clean": {},
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"demo": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|