1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

bump version thanks to Mike adding helper

update readme slightly
This commit is contained in:
Dave Conway-Jones 2018-05-01 17:45:07 +01:00
parent f275ea0bac
commit 05f41f3df8
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4
2 changed files with 13 additions and 3 deletions

View File

@ -27,7 +27,14 @@ To manually install using this repo:
To run tests on all of the nodes you will need the node-red runtime: To run tests on all of the nodes you will need the node-red runtime:
npm install node-red --no-save npm i node-red-nodes
npm i node-red --no-save
npm test
If you already have Node-RED installed you can point to the existing installation to save space.
npm i node-red-nodes
npm i {path_to_your_existing_Node-RED-install} --no-save
npm test npm test
## Contributing ## Contributing

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-nodes", "name": "node-red-nodes",
"version": "0.0.11", "version": "0.1.0",
"description": "Node-RED-nodes package to hold the test framework ONLY - use npm to install individual nodes", "description": "Node-RED-nodes package to hold the test framework ONLY - use npm to install individual nodes",
"homepage": "http://nodered.org", "homepage": "http://nodered.org",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -20,6 +20,9 @@
}, },
{ {
"name": "Ben Hardill" "name": "Ben Hardill"
},
{
"name": "Mike Blackstock"
} }
], ],
"keywords": [ "keywords": [
@ -53,6 +56,6 @@
"when": "^3.7.8" "when": "^3.7.8"
}, },
"peerDependencies": { "peerDependencies": {
"node-red": "^0.18.4" "node-red": "0.*"
} }
} }