Skip to content

Commit 6f84efc

Browse files
committed
Set Lerna concurrency to 1
1 parent 5504db6 commit 6f84efc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"changelog": "lerna-changelog",
66
"create-react-app": "tasks/cra.sh",
77
"e2e": "tasks/e2e-simple.sh",
8-
"postinstall": "lerna bootstrap",
8+
"postinstall": "lerna bootstrap --concurrency 1",
99
"publish": "tasks/release.sh",
1010
"start": "node packages/react-scripts/scripts/start.js",
1111
"test": "node packages/react-scripts/scripts/test.js --env=jsdom"

tasks/cra.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ root_path=$PWD
5252
# ******************************************************************************
5353

5454
# Install all our packages
55-
"$root_path"/node_modules/.bin/lerna bootstrap
55+
"$root_path"/node_modules/.bin/lerna bootstrap --concurrency 1
5656

5757
cd packages/react-scripts
5858

tasks/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ fi
4141

4242
cd "$root_path"
4343
# Go!
44-
./node_modules/.bin/lerna publish --independent "$@"
44+
./node_modules/.bin/lerna publish --independent --concurrency 1 "$@"

0 commit comments

Comments
 (0)