hsync 0.16.0 → 0.16.1

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.
Files changed (2) hide show
  1. package/connection.js +1 -1
  2. package/package.json +1 -1
package/connection.js CHANGED
@@ -206,7 +206,7 @@ async function createHsync(config) {
206
206
  }
207
207
 
208
208
  function addSocketListener (port, hostName, targetPort, targetHost) {
209
- console.log('addSocketListener', port, hostName, targetPort, targetHost);
209
+ // console.log('addSocketListener', port, hostName, targetPort, targetHost);
210
210
  const handler = createSocketListenHandler({port, hostName, targetPort, targetHost, hsyncClient});
211
211
  const id = b64id.generateId();
212
212
  socketListeners[id] = {handler, info: {port, hostName, targetPort, targetHost}, id};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hsync",
3
- "version": "0.16.0",
3
+ "version": "0.16.1",
4
4
  "description": "client for hsync-server",
5
5
  "main": "hsync.js",
6
6
  "scripts": {