35 lines
564 B
JSON
35 lines
564 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [
|
|
"dist/**",
|
|
".output/**",
|
|
".histoire/**",
|
|
"**/.vitepress/dist/**"
|
|
]
|
|
},
|
|
"generate": {
|
|
"dependsOn": ["^generate"],
|
|
"outputs": [
|
|
"dist/**",
|
|
".output/**"
|
|
]
|
|
},
|
|
"preview": { },
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"lint:fix": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|