script-runner
Advanced tools
Comparing version
{ | ||
"name": "script-runner", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"description": "Invoke multiple commands, running in parallel / sequential, matching npm scripts", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/paulpflug", |
@@ -25,6 +25,6 @@ #!/usr/bin/env node | ||
var tail = [] | ||
if (args.length > i+1) { head = args.slice(i+1)} | ||
if (args.length > i) { tail = args.slice(i+1)} | ||
args = head.concat(matched,tail) | ||
len = args.length | ||
i += matched.length | ||
i += matched.length-1 | ||
} | ||
@@ -31,0 +31,0 @@ } |
Sorry, the diff of this file is not supported yet
23568
0.79%