Explorar el Código

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

Piotrek Koszuliński hace 8 años
padre
commit
d95d9706ef
Se han modificado 2 ficheros con 6 adiciones y 2 borrados
  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
+    }
+  }
 }