now using npmts-g

This commit is contained in:
2016-06-11 20:22:00 +02:00
parent d7bfaa75e1
commit b3572d512d
6 changed files with 39 additions and 3 deletions

10
ts/npmci.command.ts Normal file
View File

@@ -0,0 +1,10 @@
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
}