mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
29 lines
563 B
JSON
29 lines
563 B
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"globalDependencies": ["eslint.config.js"],
|
|
"tasks": {
|
|
"lint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"format": {},
|
|
"format:fix": {},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test:watch": {},
|
|
"build": {
|
|
"outputs": ["dist/**"],
|
|
"dependsOn": ["^build"],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"outputLogs": "new-only"
|
|
}
|
|
}
|
|
}
|