bump neopixel package

and geohash package
This commit is contained in:
Dave Conway-Jones
2025-06-24 23:17:35 +01:00
parent 940bf18a1e
commit 84d557d3b3
3 changed files with 7 additions and 4 deletions

View File

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

View File

@@ -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;

View File

@@ -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"
}
}