Skip to content

Commit 84d557d

Browse files
committed
bump neopixel package
and geohash package
1 parent 940bf18 commit 84d557d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

hardware/neopixel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "node-red-node-pi-neopixel",
3-
"version" : "2.0.1",
3+
"version" : "2.0.2",
44
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
55
"dependencies" : {
66
},

io/ping/88-ping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module.exports = function(RED) {
6969
try {
7070
if (ex && ex.pid) { ex.kill("SIGINT"); }
7171
}
72-
catch(e) {console.warn(e); }
72+
catch(e) { console.warn(e); }
7373
}, hostOptions.timeout+1000); //add 1s for grace
7474

7575
var res = false;

parsers/geohash/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
22
"name" : "node-red-node-geohash",
3-
"version" : "0.1.10",
3+
"version" : "1.0.0",
44
"description" : "A Node-RED node to encode and decode lat,lon pairs to a geohash.",
55
"dependencies" : {
66
"ngeohash" : "^0.6.3"
77
},
8+
"bundledDependencies": [
9+
"ngeohash"
10+
],
811
"repository" : {
912
"type":"git",
1013
"url":"https://github.com/node-red/node-red-nodes.git",
@@ -19,7 +22,7 @@
1922
},
2023
"author": {
2124
"name": "Dave Conway-Jones",
22-
"email": "[email protected].com",
25+
"email": "dceejay@gmail.com",
2326
"url": "http://nodered.org"
2427
}
2528
}

0 commit comments

Comments
 (0)