npmci/ts/npmci.command.ts

10 lines
253 B
TypeScript
Raw Normal View History

2016-06-11 18:22:00 +00:00
import "typings-global";
import * as plugins from "./npmci.plugins";
import {bash} from "./npmci.bash";
export let command = (commandArg) => {
let done = plugins.q.defer()
console.log(process.argv);
done.resolve();
return done.promise
}