Files
medusa-store/www/turbo.json
Shahed Nasser 4d632e7a5d docs: added tests for components in api-reference project (#14428)
* add tests (WIP)

* added test for h2

* finished adding tests

* fixes

* fixes

* fixes
2026-01-05 10:56:56 +02:00

46 lines
874 B
JSON

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