Skip to content

Commit

Permalink
v0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Ustimov committed Oct 18, 2018
1 parent ec0a934 commit 6455dde
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,6 @@ RED.nodes.registerType('Cache',{

You can register in one file as much nodes as you want.

*Some node definitions may access context objects such as **RED.validators**. This can cause fail during usage of the library. If you faced such issue, it's recommended to replace this parts of the code.*

## CLI

### Installation
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-red-flow-drawer",
"version": "0.0.4",
"description": "A Node-RED flow drawer",
"version": "0.0.5",
"description": "A library and CLI for drawning Node-RED flows from JSON files",
"main": "src/flow-drawer.js",
"scripts": {
"test": "mocha"
Expand All @@ -25,7 +25,7 @@
"flow-drawer": "src/cli/flow-drawer.js"
},
"dependencies": {
"canvas": "^2.0.0-alpha.14",
"canvas": "^2.0.1",
"commander": "^2.18.0",
"d3": "^3.5.17",
"jsdom": "^12.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/flow-drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let inputFileOrDirValue;
let outputDirValue;

program
.version('0.0.4', '-v, --version')
.version('0.0.5', '-v, --version')
.arguments('<inputFileOrDir> [outputDir]')
.action((inputFileOrDir, outputDir) => {
inputFileOrDirValue = inputFileOrDir;
Expand Down

0 comments on commit 6455dde

Please sign in to comment.