Files
medusa-store/www/turbo.json
Shahed Nasser 16ae192456 docs: add tags package to generate tags (#10666)
* initial changes

* finalize implementation

* run generator on prep

* remove tags package from book

* optimization attempt

* test transpile

* test transpile

* rename utils

* rename directory

* add vercel ignore

* add tags to book
2024-12-19 13:15:42 +02:00

37 lines
719 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**",
"build/**",
"dist/**"
]
},
"start:monorepo": {
"dependsOn": [
"^build-scripts#build",
"^docs-ui#build",
"^remark-rehype-plugins#build",
"^types#build"
]
},
"lint": { },
"lint:content": { },
"watch": { },
"dev:monorepo": {
"dependsOn": [
"^build-scripts#build",
"^docs-ui#build",
"^remark-rehype-plugins#build",
"^types#build"
],
"cache": false,
"persistent": true
}
}
}