mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
> Declaring an environment variable in "dependsOn" is deprecated, found $COMMERCE_PROVIDER. Use the "env" key or use `npx @turbo/codemod migrate-env-var-dependencies`. main
42 lines
779 B
JSON
42 lines
779 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"next-commerce#build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"env": [
|
|
"COMMERCE_PROVIDER",
|
|
"BIGCOMMERCE_STOREFRONT_API_URL",
|
|
"NEXT_PUBLIC_SHOPIFY_STORE_DOMAIN",
|
|
"NEXT_PUBLIC_SWELL_STORE_ID"
|
|
],
|
|
"outputs": [".next/**"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"prettier-fix": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"types": {
|
|
"outputs": ["dist/**/*.d.ts"]
|
|
}
|
|
}
|
|
}
|