Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Switch yargs for minimist
Browse files Browse the repository at this point in the history
  • Loading branch information
szwacz committed Nov 19, 2016
1 parent 6294e3e commit 5786e5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -27,11 +27,11 @@
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"istanbul": "^0.4.3",
"minimist": "^1.2.0",
"mocha": "^3.0.2",
"rollup": "^0.36.3",
"rollup-plugin-istanbul": "^1.1.0",
"source-map-support": "^0.4.2",
"spectron": "^3.3.0",
"yargs": "^4.2.0"
"spectron": "^3.3.0"
}
}
2 changes: 1 addition & 1 deletion tasks/utils.js
@@ -1,6 +1,6 @@
'use strict';

var argv = require('yargs').argv;
var argv = require('minimist')(process.argv);

exports.getEnvName = function () {
return argv.env || 'development';
Expand Down

0 comments on commit 5786e5b

Please sign in to comment.