--version option. Fixes #39.

This commit is contained in:
Lloyd Brookes
2016-06-18 10:43:40 +01:00
parent fcabd45058
commit f21300380a
3 changed files with 9 additions and 2 deletions

View File

@ -63,6 +63,9 @@ class LocalWebServer extends MiddlewareStack {
if (options.config) {
tool.stop(JSON.stringify(options, null, ' '), 0)
} else if (options.version) {
const pkg = require(path.resolve(__dirname, '..', 'package.json'))
tool.stop(pkg.version)
} else {
const server = this.getServer()
server.listen(options.port, onServerUp.bind(null, options, server.isHttps))