mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
* Updated log * Updates to root * Updates to pnpm * successfully moved to pnpm * type issue * Local as the default provider * Upgrade dependencies * Revert to local * Upgrade React * Update node-fetch deps * Fix types * Ignore warnings * Fix missing dependency * Update pnpm-lock.yaml * Add missing @types/cookie * Upgrade dependencies * Fix missing dependencies * Update README.md Co-authored-by: Bel Curcio <curciobel@gmail.com>
40 lines
760 B
JSON
40 lines
760 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.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"]
|
|
}
|
|
}
|
|
}
|