Skip to content

Commit

Permalink
Node fix (#36)
Browse files Browse the repository at this point in the history
* Update index.ts

* Update package.json

* Update package-lock.json

* Update index.ts
  • Loading branch information
Marcos Vinícius Rubido authored May 22, 2019
1 parent 5cda20f commit 96751cd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tplant",
"version": "2.2.0",
"version": "2.2.1",
"description": "Typescript to PlantUML",
"keywords": [
"Class Diagram",
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env node

// tslint:disable:no-console

import commander from 'commander';
Expand All @@ -9,7 +11,7 @@ import ts from 'typescript';
import { tplant } from './tplant';

commander
.version('2.2.0')
.version('2.2.1')
.option('-i, --input <path>', 'Define the path of the Typescript file')
.option('-o, --output <path>', 'Define the path of the output file. If not defined, it\'ll output on the STDOUT')
.option(
Expand Down

0 comments on commit 96751cd

Please sign in to comment.