Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ustimov committed Oct 29, 2018
1 parent 927ffac commit e5c07f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ A library and CLI for drawning [Node-RED](https://github.com/node-red/node-red)
* [How to install external nodes](#how-to-install-external-nodes)
* [Known issues](#known-issues)
* [Troubleshooting](#troubleshooting)
* [Credits](#credits)
* [License](#license)

## Prerequisites
Expand Down Expand Up @@ -130,6 +131,10 @@ In order to install an external node, you need to install its **npm package** to

The library depends on [node-canvas](https://github.com/Automattic/node-canvas) library. That's why you can face some issues during installation of the library in case if there are no prebuilt binaries for your system. In this case look at **Compiling** section of node-canvas documentation [https://github.com/Automattic/node-canvas#compiling](https://github.com/Automattic/node-canvas#compiling).

## Credits

Based on [Node-RED 0.19.4](https://github.com/node-red/node-red/releases/tag/0.19.4).

## License

[MIT](/LICENSE)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-flow-drawer",
"version": "0.0.5",
"version": "0.1.0",
"description": "A library and CLI for drawning Node-RED flows from JSON files",
"main": "src/flow-drawer.js",
"scripts": {
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.5", "-v, --version")
.version("0.1.0", "-v, --version")
.arguments("<inputFileOrDir> [outputDir]")
.action((inputFileOrDir, outputDir) => {
inputFileOrDirValue = inputFileOrDir;
Expand Down

0 comments on commit e5c07f1

Please sign in to comment.