Removed "use strict" as it breaks this node. I'm investigating why.

Also updated the package.json to reflect autors and bumped version number
This commit is contained in:
Ben Hardill 2014-12-22 15:45:51 +00:00
parent c45c625872
commit 1ef562edbd
2 changed files with 15 additions and 7 deletions

View File

@ -15,7 +15,7 @@
**/
module.exports = function(RED) {
"use strict";
//"use strict";
var HID = require('node-hid');
var device;
var node;

View File

@ -1,10 +1,11 @@
{
"name" : "node-red-node-digirgb",
"version" : "0.0.1",
"version" : "0.0.2",
"description" : "A Node-RED node to control a Digispark RGB LED",
"dependencies" : {
"node-hid" : "0.3.1"
},
"homepage": "http://www.hardill.me.uk/wordpress/2013/02/06/budget-blink1/",
"repository" : {
"type":"git",
"url":"https://github.com/node-red/node-red-nodes/tree/master/hardware/digiRGB"
@ -16,9 +17,16 @@
"digiRGB": "78-digiRGB.js"
}
},
"author": {
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org"
}
"contributors": [
{
"name": "Dave Conway-Jones",
"email": "ceejay@vnet.ibm.com",
"url": "http://nodered.org"
},
{
"name": "Ben Hardill",
"email": "hardillb@gmail.com",
"url": "http://www.hardill.me.uk/wordpress/"
}
]
}