From 23b2642041774f7610904b1e051d0e3ba92b946b Mon Sep 17 00:00:00 2001 From: Brandon Nozaki Miller Date: Mon, 11 Jan 2016 14:25:48 -0800 Subject: [PATCH] prepped for publish --- dao/client.js | 6 +++--- entities/Defaults.js | 1 + package.json | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/dao/client.js b/dao/client.js index 122234a..261c1ce 100644 --- a/dao/client.js +++ b/dao/client.js @@ -25,7 +25,7 @@ function init(config,log){ } function emit(type,data){ - this.log('dispatching event to '.debug, this.id.variable, this.path.variable,' : ', type.data,',', data); + this.log('dispatching event to '.debug, (this.id).variable, this.path.variable,' : ', type.data,',', data); let message=new Message; message.type=type; @@ -48,7 +48,7 @@ function emit(type,data){ } function syncEmit(message){ - this.log('dispatching event to '.debug, this.id.variable, this.path.variable,' : ', message.data); + this.log('dispatching event to '.debug, (this.id).variable, this.path.variable,' : ', message.data); this.socket.write(message); } @@ -148,7 +148,7 @@ function connect(){ ){ client.trigger('disconnect'); client.log( - client.config.id.variable, + (client.config.id).variable, 'exceeded connection rety amount of'.warn, ' or stopRetrying flag set.' ); diff --git a/entities/Defaults.js b/entities/Defaults.js index 42cc94d..9a69a7d 100644 --- a/entities/Defaults.js +++ b/entities/Defaults.js @@ -1,4 +1,5 @@ 'use strict'; + const os = require('os'); class Defaults{ diff --git a/package.json b/package.json index 1654d87..4a7f0a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-ipc", - "version": "5.2.0", + "version": "6.0.0", "description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.", "main": "node-ipc.js", "directories": {