From d0262eea5a48f5061b401b5e897945ef2b14a010 Mon Sep 17 00:00:00 2001 From: Kamil Sobol Date: Mon, 3 Apr 2023 10:18:17 -0700 Subject: [PATCH] fix: yarn failures (#12368) --- .circleci/config.base.yml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.base.yml b/.circleci/config.base.yml index 56eedf8f307..19d79e9b707 100644 --- a/.circleci/config.base.yml +++ b/.circleci/config.base.yml @@ -135,7 +135,7 @@ jobs: - checkout - run: yarn config set registry https://registry.npmjs.org - run: yarn config set script-shell $(which bash) - - run: yarn install + - run: yarn install --network-concurrency 1 - run: name: Build tests command: yarn build-tests diff --git a/package.json b/package.json index a88cf2b8d77..631c7ffbaad 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "prettier-check": "yarn prettier --check .", "prettier-changes": "git diff --name-only --diff-filter MRA dev | xargs yarn prettier --write", "prettier-write": "yarn prettier --write .", - "production-build": "yarn --frozen-lockfile --cache-folder ~/.cache/yarn && nx run-many --target=build --all", + "production-build": "yarn --frozen-lockfile --network-concurrency 1 --cache-folder ~/.cache/yarn && nx run-many --target=build --all", "promote-rc": "./scripts/promote-rc.sh", "publish-to-verdaccio": "lerna publish --yes --no-commit-hooks --no-push --exact --dist-tag=latest --conventional-commits --no-git-tag-version --no-verify-access", "release-rc": "./scripts/release-rc.sh",