Compare commits

...

2 Commits

Author SHA1 Message Date
216c28d76e 2.1.53 2016-06-11 20:30:41 +02:00
b22b2fa802 fix npmci command 2016-06-11 20:30:35 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "npmci", "name": "npmci",
"version": "2.1.52", "version": "2.1.53",
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {

View File

@@ -42,7 +42,7 @@ switch (command){
.then(NpmciEnv.configStore); .then(NpmciEnv.configStore);
break; break;
case "command": case "command":
command() command2()
.then(NpmciEnv.configStore); .then(NpmciEnv.configStore);
break; break;
case "install": case "install":

View File

@@ -2,7 +2,7 @@ import "typings-global";
import * as plugins from "./npmci.plugins"; import * as plugins from "./npmci.plugins";
import {bash} from "./npmci.bash"; import {bash} from "./npmci.bash";
export let command = (commandArg) => { export let command = () => {
let done = plugins.q.defer() let done = plugins.q.defer()
console.log(process.argv); console.log(process.argv);
done.resolve(); done.resolve();