Files
tuono/turbo.json
T
Valerio Ageno 5d434aeb68 Change lazy function name to dynamic (#5)
* 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
2024-06-21 18:52:58 +02:00

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"
]
}
}
}