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

38 lines
468 B
JSON
Raw Permalink Normal View History

2023-06-15 14:36:31 -03:00
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
2023-06-26 14:50:47 -03:00
"dependsOn": [
"^test",
2023-06-27 14:47:34 -03:00
"^build"
2023-06-26 14:50:47 -03:00
],
"outputs": [
"dist/**"
]
2023-06-15 14:36:31 -03:00
},
"lint": {},
2023-06-26 14:50:47 -03:00
"test": {
"dependsOn": [
2023-06-27 14:47:34 -03:00
"build"
2023-06-26 14:50:47 -03:00
]
},
"test:watch": {
"persistent": true
},
2023-06-15 14:36:31 -03:00
"dev": {
2023-06-26 14:50:47 -03:00
"dependsOn": [
"^build"
],
2023-06-15 14:36:31 -03:00
"cache": false,
"persistent": true
},
"preview": {
2023-06-26 14:50:47 -03:00
"dependsOn": [
2023-06-27 14:47:34 -03:00
"^build",
"build"
2023-06-26 14:50:47 -03:00
],
2023-06-15 14:36:31 -03:00
"persistent": true
}
}
}