add network concurrency for vercel builds

prettier ignore .vercel
This commit is contained in:
tjs 2023-01-28 14:41:13 -05:00
parent 2ea326cbe8
commit 1f1c10134e
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
node_modules node_modules
.next .next
.vercel
yarn.lock yarn.lock
package-lock.json package-lock.json
public public

View File

@ -3,7 +3,7 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"scripts": { "scripts": {
"setup": "yarn install && npx yarn-deduplicate && yarn allow-scripts && yarn bigint-fix", "setup": "yarn install --network-concurrency 1 && npx yarn-deduplicate && yarn allow-scripts && yarn bigint-fix",
"ci": "yarn install --frozen-lockfile --network-concurrency 1 --color=always && yarn allow-scripts && yarn bigint-fix", "ci": "yarn install --frozen-lockfile --network-concurrency 1 --color=always && yarn allow-scripts && yarn bigint-fix",
"ci-dupe-check": "npx yarn-deduplicate --list --fail", "ci-dupe-check": "npx yarn-deduplicate --list --fail",
"bigint-fix": "cd node_modules/bigint-buffer && yarn rebuild && cd ../../", "bigint-fix": "cd node_modules/bigint-buffer && yarn rebuild && cd ../../",