Skip to content

Commit

Permalink
create a CLI version
Browse files Browse the repository at this point in the history
  • Loading branch information
drake7707 committed Jul 13, 2019
1 parent 9776270 commit 1aa53d0
Show file tree
Hide file tree
Showing 13 changed files with 5,841 additions and 148 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
node_modules
*.js
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run cli",
"program": "${workspaceFolder}/src-cli/main.js",
"args": [ "-i", "testinputmedium.png", "-o", "testinput.svg"],
"cwd":"${workspaceFolder}/src-cli",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
Loading

0 comments on commit 1aa53d0

Please sign in to comment.