瀏覽代碼

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
+    }
+  }
 }