@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.
- package/lib/cjs/app/CoreApp.js +0 -2
- package/lib/mjs/app/CoreApp.js +0 -2
- package/package.json +1 -1
- package/src/app/CoreApp.ts +0 -3
package/lib/cjs/app/CoreApp.js
CHANGED
|
@@ -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
|
package/lib/mjs/app/CoreApp.js
CHANGED
|
@@ -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
package/src/app/CoreApp.ts
CHANGED
|
@@ -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;
|