Files
reffuse/turbo.json
Julien Valverdé 47aa130486
All checks were successful
Lint / lint (push) Successful in 12s
CI fix
2025-02-25 22:53:07 +01:00

21 lines
353 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["./src/**"],
"outputs": ["./dist/**"]
},
"pack": {
"dependsOn": ["pack"]
},
"publish": {
"dependsOn": ["publish"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}