10 lines
253 B
TypeScript
10 lines
253 B
TypeScript
|
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
|
||
|
}
|