@openfin/node-adapter 37.80.18 → 37.80.19

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.
@@ -11826,8 +11826,7 @@ class LayoutModule extends base_1$5.Base {
11826
11826
  const managerProxy = new Proxy(layoutManager, {
11827
11827
  get(target, key) {
11828
11828
  console.warn(`[Layout-mgr-proxy] accessing ${key.toString()}`);
11829
- console.warn(msg);
11830
- return target[key];
11829
+ throw new Error(msg);
11831
11830
  }
11832
11831
  });
11833
11832
  const layout = Object.assign(this.wrapSync(layoutIdentity), { layoutManager: managerProxy });
@@ -11835,7 +11834,7 @@ class LayoutModule extends base_1$5.Base {
11835
11834
  get(target, key) {
11836
11835
  if (key === 'layoutManager') {
11837
11836
  console.warn(`[Layout-proxy] accessing ${key.toString()}`);
11838
- console.warn(msg);
11837
+ throw new Error(msg);
11839
11838
  }
11840
11839
  return target[key];
11841
11840
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/node-adapter",
3
- "version": "37.80.18",
3
+ "version": "37.80.19",
4
4
  "description": "See README.md",
5
5
  "main": "out/node-adapter.js",
6
6
  "types": "out/node-adapter.d.ts",