cli-arguments
Advanced tools
Comparing version 0.0.1 to 0.1.0
@@ -96,3 +96,3 @@ /** | ||
let name = arg.substr(2); | ||
option = config.globalOptions[name] || commandOptions[name]; | ||
option = commandOptions[name] || config.globalOptions[name]; | ||
} else { | ||
@@ -99,0 +99,0 @@ option = globalShortcuts[arg[1]]; |
{ | ||
"name": "cli-arguments", | ||
"version": "0.0.1", | ||
"version": "0.1.0", | ||
"main": "lib/index.js" | ||
} |
@@ -5,11 +5,2 @@ /** | ||
"use strict"; | ||
require("babel/register")({ | ||
"ignore": false, | ||
"whitelist": [ | ||
"es6.arrowFunctions", | ||
"es6.destructuring" | ||
] | ||
}); | ||
var cliArgv = require("../lib/index.js"); | ||
@@ -16,0 +7,0 @@ |
5138
159