@etsoo/appscript 1.5.1 → 1.5.2

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.
@@ -154,8 +154,6 @@ class CoreApp {
154
154
  this.fields = IApp_1.appFields.reduce((a, v) => ({ ...a, [v]: 'smarterp-' + v + '-' + name }), {});
155
155
  // Device id
156
156
  this._deviceId = storage.getData(this.fields.deviceId, '');
157
- // Debug
158
- this.debugIt('constructor', this.fields, this._deviceId);
159
157
  this.setApi(api);
160
158
  const { currentCulture, currentRegion } = settings;
161
159
  // Load resources
@@ -151,8 +151,6 @@ export class CoreApp {
151
151
  this.fields = appFields.reduce((a, v) => ({ ...a, [v]: 'smarterp-' + v + '-' + name }), {});
152
152
  // Device id
153
153
  this._deviceId = storage.getData(this.fields.deviceId, '');
154
- // Debug
155
- this.debugIt('constructor', this.fields, this._deviceId);
156
154
  this.setApi(api);
157
155
  const { currentCulture, currentRegion } = settings;
158
156
  // Load resources
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -305,9 +305,6 @@ export abstract class CoreApp<
305
305
  // Device id
306
306
  this._deviceId = storage.getData(this.fields.deviceId, '');
307
307
 
308
- // Debug
309
- this.debugIt('constructor', this.fields, this._deviceId);
310
-
311
308
  this.setApi(api);
312
309
 
313
310
  const { currentCulture, currentRegion } = settings;