odsl-javascript-sdk 1.1.8 → 1.1.9

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/package.json +1 -1
  2. package/src/process.js +2 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "odsl-javascript-sdk",
3
3
  "type": "commonjs",
4
- "version": "1.1.8",
4
+ "version": "1.1.9",
5
5
  "description": "Javascript SDK for OpenDataDSL",
6
6
  "main": "src/odsl.js",
7
7
  "scripts": {
package/src/process.js CHANGED
@@ -35,7 +35,7 @@ module.exports = class PROCESS {
35
35
  this.phase.message = "Initialising Phase: " + name;
36
36
  this.phase.setPhase(name);
37
37
  await this.updateProcess(this.phase);
38
- inphase = true;
38
+ this.inphase = true;
39
39
  }
40
40
 
41
41
  async endPhase(status, mess) {
@@ -51,7 +51,7 @@ module.exports = class PROCESS {
51
51
  }
52
52
  this.phase.log.push(lm);
53
53
  await this.updateProcess(this.phase);
54
- inphase = false;
54
+ this.inphase = false;
55
55
  }
56
56
 
57
57
  async logMessage(level, mess) {