@e-mc/cloud 0.4.1 → 0.5.0

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -252,7 +252,7 @@ class Cloud extends core_1.ClientDb {
252
252
  return Promise.resolve(result);
253
253
  })
254
254
  .catch(err => instance.writeFail(["Download failed" /* ERR_CLOUD.DOWNLOAD_FAIL */, path.basename(downloadUri)], err, { type: 64 /* LOG_TYPE.CLOUD */, startTime }));
255
- if (active || waitStatus || this.archiving) {
255
+ if (active || waitStatus || this.incremental === 'staging') {
256
256
  tasks.push(task);
257
257
  }
258
258
  downloadMap[location] = pending;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@e-mc/cloud",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "description": "Cloud constructor for E-mc.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -20,8 +20,8 @@
20
20
  "license": "BSD 3-Clause",
21
21
  "homepage": "https://github.com/anpham6/e-mc#readme",
22
22
  "dependencies": {
23
- "@e-mc/core": "0.4.1",
24
- "@e-mc/db": "0.4.1",
25
- "@e-mc/types": "0.4.1"
23
+ "@e-mc/core": "0.5.0",
24
+ "@e-mc/db": "0.5.0",
25
+ "@e-mc/types": "0.5.0"
26
26
  }
27
27
  }