mirror of
https://github.com/zenstackhq/zenstack
synced 2026-05-24 10:08:55 +00:00
23 lines
613 B
JSON
23 lines
613 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**", "samples/**", "zenstack/*.zmodel"],
|
|
"outputs": ["dist/**", ".output/**"]
|
|
},
|
|
"watch": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**", "zenstack/*.zmodel"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^lint"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalPassThroughEnv": ["TEST_DB_PROVIDER"]
|
|
}
|