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

21 lines
355 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
}
}
}