convert styles to stylus

This commit is contained in:
Asraelite 2016-03-29 14:50:17 +01:00
parent 1160466cf9
commit c47ad92f21
11 changed files with 98 additions and 119 deletions

View file

@ -17,11 +17,10 @@ class WingbaseServer extends ServerInterface {
commander
.version(packageJson.version)
.option('-d, --development', 'run in development mode')
.option('-p, --port [port]', 'specify port to use', port)
.option('-p, --port <port>', 'specify port to use', parseInt, port)
.parse(process.argv);
this.args = commander;
console.log(commander.port);
process.on('SIGINT', this.stop.bind(this));
}