prepped for publish

This commit is contained in:
Brandon Nozaki Miller 2016-01-11 14:25:48 -08:00
parent bd967c7513
commit 23b2642041
3 changed files with 5 additions and 4 deletions

View File

@ -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.'
);

View File

@ -1,4 +1,5 @@
'use strict';
const os = require('os');
class Defaults{

View File

@ -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": {