This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MarkNow/turbo.json
2023-06-26 14:50:47 -03:00

42 lines
513 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^test",
"test"
],
"outputs": [
"dist/**"
]
},
"lint": {},
"test": {
"dependsOn": [
"^lint",
"lint"
]
},
"test:watch": {
"dependsOn": [
"^lint",
"lint"
],
"persistent": true
},
"dev": {
"dependsOn": [
"^build"
],
"cache": false,
"persistent": true
},
"preview": {
"dependsOn": [
"^build"
],
"persistent": true
}
}
}