dxfl 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # v0.1.11
2
+
3
+ - Lower files upload concurrency (from 50 to 20) to avoid IO issues
4
+
1
5
  # v0.1.10
2
6
 
3
7
  - new `logout` command: removes dxfl config folder containing the credentials
package/dist/deploy.js CHANGED
@@ -300,7 +300,7 @@ function applyDeployPlan(bucket, plan) {
300
300
  }));
301
301
  // Upload files
302
302
  yield PromisePool.for(plan.filesToUpload)
303
- .withConcurrency(50)
303
+ .withConcurrency(20)
304
304
  .handleError(err => {
305
305
  throw err;
306
306
  })
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ import { login, logout } from "./auth.js";
4
4
  import { deploy } from "./deploy.js";
5
5
  import { empty } from "./empty.js";
6
6
  import { vhostsList } from "./vhosts.js";
7
- program.name("dxfl").description("Deuxfleurs CLI tool").version("0.1.10");
7
+ program.name("dxfl").description("Deuxfleurs CLI tool").version("0.1.11");
8
8
  program
9
9
  .command("login")
10
10
  .description("Link your Deuxfleurs account with this tool.")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dxfl",
3
- "version": "0.1.10",
3
+ "version": "0.1.11",
4
4
  "description": "",
5
5
  "license": "EUPL-1.2",
6
6
  "author": "Deuxfleurs Team <coucou@deuxfleurs.fr>",