@asbjornenge/raistlin
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -26,7 +26,5 @@ "use strict"; | ||
name: "port", | ||
abbr: "p", | ||
help: "port to bind (default 8080)" | ||
}, { | ||
name: "host", | ||
abbr: "h", | ||
help: "host to bind (default 127.0.0.1)" | ||
@@ -45,4 +43,4 @@ }], | ||
var host = args.h || "127.0.0.1"; | ||
var port = args.p || "8080"; | ||
var host = args.host || "127.0.0.1"; | ||
var port = args.port || "8080"; | ||
var folder = args["static"] || "build"; | ||
@@ -49,0 +47,0 @@ var _static = "static -a " + host + " -p " + port + " " + folder; |
{ | ||
"name": "@asbjornenge/raistlin", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "A dev- and buildtool for browserify", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -36,2 +36,16 @@ # Raistlin | ||
## Changelog | ||
### 1.1.1 | ||
* `start` is no longer using -h and -p as abbr for host and port since --help was eating -h | ||
### 1.1.0 | ||
* Don't remember. Had no changelog. | ||
### 1.0.0 | ||
* Initial release | ||
enjoy |
@@ -30,3 +30,2 @@ let shell = require('shelljs') | ||
name : 'port', | ||
abbr : 'p', | ||
help : 'port to bind (default 8080)' | ||
@@ -36,3 +35,2 @@ }, | ||
name : 'host', | ||
abbr : 'h', | ||
help : 'host to bind (default 127.0.0.1)' | ||
@@ -52,4 +50,4 @@ } | ||
let host = args.h || '127.0.0.1' | ||
let port = args.p || '8080' | ||
let host = args.host || '127.0.0.1' | ||
let port = args.port || '8080' | ||
let folder = args.static || 'build' | ||
@@ -56,0 +54,0 @@ let _static = `static -a ${host} -p ${port} ${folder}` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68784
51
309