mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
5d434aeb68
* feat: add test:watch script * feat: update lazy babel plugin to support 'dynamic' as function name * feat: move 'lazy' into 'dynamic' function name to tuono main package * feat: update version to v0.1.8
29 lines
392 B
JSON
29 lines
392 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"lint": {},
|
|
"format": {},
|
|
"format:check": {},
|
|
"types": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"test": {},
|
|
"test:watch": {},
|
|
"build": {
|
|
"outputs": [
|
|
"dist/**"
|
|
],
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"dev": {
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
}
|
|
}
|
|
}
|