mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
39 lines
710 B
JSON
39 lines
710 B
JSON
{
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"next-commerce#build": {
|
|
"dependsOn": [
|
|
"^build",
|
|
"$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"]
|
|
}
|
|
}
|
|
}
|