gradido/frontend/turbo.json

26 lines
489 B
JSON

{
"extends": ["//"],
"tasks": {
"stylelint": {},
"locales": {},
"lint": {
"dependsOn": ["stylelint", "locales"]
},
"stylelint:fix": {},
"locales:fix": {},
"lint:fix": {
"dependsOn": ["stylelint:fix", "locales:fix"]
},
"compile-scss": {},
"watch-scss": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["compile-scss", "^build"],
"outputs": ["build/**"],
"cache": true
}
}
}