Files
medusa-store/www/turbo.json
Shahed Nasser ab5a7ca691 docs: fix infinite scroll, update next.js, other fixes (#9441)
* update nextjs

* badge + scroll fixes
2024-10-03 14:17:33 +03:00

36 lines
701 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": { },
"dev:monorepo": {
"dependsOn": [
"^build-scripts#build",
"^docs-ui#build",
"^remark-rehype-plugins#build",
"^types#build"
],
"cache": false,
"persistent": true
}
}
}