npmci/ts/npmci.command.ts

10 lines
243 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";
2016-06-11 18:30:35 +00:00
export let command = () => {
2016-06-11 18:22:00 +00:00
let done = plugins.q.defer()
console.log(process.argv);
done.resolve();
return done.promise
}