mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
30 lines
501 B
JSON
30 lines
501 B
JSON
|
{
|
||
|
"baseBranch": "origin/main",
|
||
|
"pipeline": {
|
||
|
"build": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"outputs": ["dist/**"]
|
||
|
},
|
||
|
"next-commerce#build": {
|
||
|
"dependsOn": ["^build", "$COMMERCE_PROVIDER"],
|
||
|
"outputs": [".next/**"]
|
||
|
},
|
||
|
"test": {
|
||
|
"dependsOn": ["^build"],
|
||
|
"outputs": []
|
||
|
},
|
||
|
"lint": {
|
||
|
"outputs": []
|
||
|
},
|
||
|
"prettier-fix": {
|
||
|
"outputs": []
|
||
|
},
|
||
|
"dev": {
|
||
|
"cache": false
|
||
|
},
|
||
|
"start": {
|
||
|
"cache": false
|
||
|
}
|
||
|
}
|
||
|
}
|