CLI: use .hyper.js from repo root dir when running in dev mode (#2792)

This commit is contained in:
Tal Hayut 2018-04-20 18:02:30 +03:00 committed by CHaBou
parent 57c735cb6d
commit b5c221fe68
2 changed files with 16 additions and 1 deletions

9
.vscode/launch.json vendored
View file

@ -8,6 +8,15 @@
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
"program": "${workspaceRoot}/app/index.js",
"protocol": "inspector"
},
{
"type": "node",
"request": "launch",
"name": "cli",
"runtimeExecutable": "node",
"program": "${workspaceRoot}/bin/cli.js",
"args": ["--help"],
"protocol": "inspector"
}
]
}