@pathscale/wss-adapter 1.0.10 → 1.0.11

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.
@@ -139,7 +139,6 @@ var receiveHandler = function (event) {
139
139
  }
140
140
  }
141
141
  else if (response.resource) {
142
- console.log("app::".concat(response.resource, " got:"), response);
143
142
  var resource = response.resource.split('@')[0];
144
143
  //@ts-ignore
145
144
  var executor = store.subscriptions.app[resource];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pathscale/wss-adapter",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Websocket adapter for the Pathscale WSS",
5
5
  "main": "dist/wssAdapter.js",
6
6
  "types": "dist/wssAdapter.d.ts",
package/wssAdapter.ts CHANGED
@@ -178,7 +178,6 @@ const receiveHandler = (event: { data: string }) => {
178
178
  resolve(response, code)
179
179
  }
180
180
  } else if (response.resource) {
181
- console.log(`app::${response.resource} got:`, response)
182
181
  const resource = response.resource.split('@')[0]
183
182
  //@ts-ignore
184
183
  const executor = store.subscriptions.app[resource] as (