It seems to be related with #14, but it's the opposite: now diagrams CLI hangs on rendering flowchart diagrams but works with sequence.
System info
- Ubuntu 18.04.3 LTS
- node v8.10.0
Steps to reproduce
Install CLI
$ npm install -g diagrams
Create flowchart diagram source (input.flowchart)
cat > input.flowchart <<EOF
st=>start: Start:>http://www.google.com[blank]
e=>end:>http://www.google.com
op1=>operation: My Operation
sub1=>subroutine: My Subroutine
cond=>condition: Yes
or No?:>http://www.google.com
io=>inputoutput: catch something...
para=>parallel: parallel tasks
st->op1->cond
cond(yes)->io->e
cond(no)->para
para(path1, bottom)->sub1(right)->op1
para(path2, top)->op1
EOF
Run command to render SVG
$ diagrams flowchart input.flowchart flowchart.svg
It hangs forever.
It seems to be related with #14, but it's the opposite: now diagrams CLI hangs on rendering flowchart diagrams but works with sequence.
System info
Steps to reproduce
Install CLI
$ npm install -g diagramsCreate flowchart diagram source (
input.flowchart)Run command to render SVG
$ diagrams flowchart input.flowchart flowchart.svgIt hangs forever.