@etsoo/appscript 1.4.81 → 1.4.82

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.
@@ -147,8 +147,7 @@ class CoreApp {
147
147
  const { currentCulture, currentRegion } = settings;
148
148
  // Load resources
149
149
  Promise.all([loadCrypto(), this.changeCulture(currentCulture)]).then(([cj, _resources]) => {
150
- console.log('CoreApp Init', cj, _resources);
151
- CJ = cj;
150
+ CJ = cj.default;
152
151
  this.changeRegion(currentRegion);
153
152
  this.setup();
154
153
  });
@@ -144,8 +144,7 @@ export class CoreApp {
144
144
  const { currentCulture, currentRegion } = settings;
145
145
  // Load resources
146
146
  Promise.all([loadCrypto(), this.changeCulture(currentCulture)]).then(([cj, _resources]) => {
147
- console.log('CoreApp Init', cj, _resources);
148
- CJ = cj;
147
+ CJ = cj.default;
149
148
  this.changeRegion(currentRegion);
150
149
  this.setup();
151
150
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.4.81",
3
+ "version": "1.4.82",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -298,8 +298,7 @@ export abstract class CoreApp<
298
298
  // Load resources
299
299
  Promise.all([loadCrypto(), this.changeCulture(currentCulture)]).then(
300
300
  ([cj, _resources]) => {
301
- console.log('CoreApp Init', cj, _resources);
302
- CJ = cj;
301
+ CJ = cj.default;
303
302
  this.changeRegion(currentRegion);
304
303
  this.setup();
305
304
  }