diff --git a/hardware/neopixel/package.json b/hardware/neopixel/package.json index 6e2e7700..06c19c59 100644 --- a/hardware/neopixel/package.json +++ b/hardware/neopixel/package.json @@ -1,6 +1,6 @@ { "name" : "node-red-node-pi-neopixel", - "version" : "2.0.1", + "version" : "2.0.2", "description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.", "dependencies" : { }, diff --git a/io/ping/88-ping.js b/io/ping/88-ping.js index 505f9380..5a789a4a 100644 --- a/io/ping/88-ping.js +++ b/io/ping/88-ping.js @@ -69,7 +69,7 @@ module.exports = function(RED) { try { if (ex && ex.pid) { ex.kill("SIGINT"); } } - catch(e) {console.warn(e); } + catch(e) { console.warn(e); } }, hostOptions.timeout+1000); //add 1s for grace var res = false; diff --git a/parsers/geohash/package.json b/parsers/geohash/package.json index 41e233e8..4b92316c 100644 --- a/parsers/geohash/package.json +++ b/parsers/geohash/package.json @@ -1,10 +1,13 @@ { "name" : "node-red-node-geohash", - "version" : "0.1.10", + "version" : "1.0.0", "description" : "A Node-RED node to encode and decode lat,lon pairs to a geohash.", "dependencies" : { "ngeohash" : "^0.6.3" }, + "bundledDependencies": [ + "ngeohash" + ], "repository" : { "type":"git", "url":"https://github.com/node-red/node-red-nodes.git", @@ -19,7 +22,7 @@ }, "author": { "name": "Dave Conway-Jones", - "email": "ceejay@vnet.ibm.com", + "email": "dceejay@gmail.com", "url": "http://nodered.org" } }