mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
75c790dd6e
* refactor: create standalone router package * fix: add jsdom to tuono-router package * fix: remove test in tuono vite.config * update turbo to latest * fix: wait build before lint * fix: router types
33 lines
430 B
JSON
33 lines
430 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"lint": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"format": {},
|
|
"format:check": {},
|
|
"types": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"test": {},
|
|
"test:watch": {},
|
|
"build": {
|
|
"outputs": [
|
|
"dist/**"
|
|
],
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
}
|
|
}
|
|
}
|