Compare commits

...

2 Commits

Author SHA1 Message Date
9f5c7b0ca0 2.1.61 2016-06-25 11:58:38 +02:00
7de38ce050 now has working version 2016-06-25 11:58:33 +02:00
3 changed files with 18 additions and 8 deletions

10
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@@ -1,13 +1,14 @@
{ {
"name": "npmci", "name": "npmci",
"version": "2.1.60", "version": "2.1.61",
"description": "", "description": "",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {
"npmci": "dist/index.js" "npmci": "dist/index.js"
}, },
"scripts": { "scripts": {
"test": "(npmts)" "test": "(npmts) && (npm run testVersion)",
"testVersion": "node dist/index.js -v"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@@ -22,8 +22,8 @@ export {publish} from "./npmci.publish";
let command; let command;
let commandOption:string; let commandOption:string;
plugins.commander let commander = plugins.commander
.version(npmciInfo.version) .option("-v","--version","print version")
.arguments('<commandarg> [commandoptionarg]') .arguments('<commandarg> [commandoptionarg]')
.action(function (commandarg, commandoptionarg) { .action(function (commandarg, commandoptionarg) {
command = commandarg; command = commandarg;
@@ -32,6 +32,11 @@ plugins.commander
plugins.commander.parse(process.argv); plugins.commander.parse(process.argv);
if(commander.version) {
console.log(npmciInfo.version);
process.exit(0);
}
if (typeof command === 'undefined') { if (typeof command === 'undefined') {
console.error('no command given!'); console.error('no command given!');
process.exit(1); process.exit(1);