Преглед на файлове

Internal: Disable concurrency wherever we use Lerna. Closes #431.

Piotrek Koszuliński преди 8 години
родител
ревизия
d95d9706ef
променени са 2 файла, в които са добавени 6 реда и са изтрити 2 реда
  1. 1 1
      .travis.yml
  2. 5 1
      lerna.json

+ 1 - 1
.travis.yml

@@ -17,7 +17,7 @@ before_install:
 install:
   - npm install mgit2 lerna gulp @ckeditor/ckeditor5-dev-tests @ckeditor/ckeditor5-dev-docs
   - mgit bootstrap --resolver-url-template="https://github.com/\${ path }.git"
-  - lerna bootstrap --concurrency=1
+  - lerna bootstrap
 script:
   - npm t
   - gulp docs:api --validate-only

+ 5 - 1
lerna.json

@@ -6,5 +6,9 @@
   ],
   "hoist": true,
   "nohoist": "guppy-pre-commit",
-  "version": "0.0.0"
+  "commands": {
+    "bootstrap": {
+      "concurrency": 1
+    }
+  }
 }