Kode / khamake

Kha's build tool.
http://kha.tech
15 stars 45 forks source link

Allow to run --watch --server #259

Closed RblSb closed 2 years ago

RblSb commented 2 years ago

So you can get working http/haxe servers with one command. This makes things easier to maintain in vscode tasks and kill http/haxe/watcher servers at the end of debugging without zombie processes.

{
    "name": "Debug HTML5",
    "request": "launch",
    "type": "pwa-node",
    "program": "${command:kha.findKha}/make",
    "args": ["html5", "--watch", "--server"],
    "killBehavior": "polite",
},