Skip to content

Commit

Permalink
refactor: use yargs-parser (#2078)
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinBeckwith committed May 4, 2020
1 parent c8f5677 commit 76ee266
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -52,7 +52,6 @@
"devDependencies": {
"@compodoc/compodoc": "^1.1.10",
"@types/execa": "^0.9.0",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^1.0.0",
"@types/mocha": "^7.0.0",
"@types/mv": "^2.1.0",
Expand All @@ -64,14 +63,14 @@
"@types/sinon": "^9.0.0",
"@types/tmp": "^0.2.0",
"@types/url-template": "^2.0.28",
"@types/yargs-parser": "^15.0.0",
"c8": "^7.0.0",
"codecov": "^3.4.0",
"execa": "^4.0.0",
"gaxios": "^3.0.3",
"gts": "^2.0.0",
"js-green-licenses": "^1.0.0",
"linkinator": "^2.0.0",
"minimist": "^1.2.5",
"mkdirp": "^1.0.0",
"mocha": "^7.0.0",
"mv": "^2.1.1",
Expand All @@ -84,6 +83,7 @@
"server-destroy": "^1.0.1",
"sinon": "^9.0.2",
"tmp": "^0.2.0",
"typescript": "^3.8.3"
"typescript": "^3.8.3",
"yargs-parser": "^18.1.3"
}
}
2 changes: 1 addition & 1 deletion src/generator/download.ts
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import * as minimist from 'minimist';
import * as minimist from 'yargs-parser';
import * as path from 'path';
import * as util from 'util';
import * as fs from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion src/generator/generate.ts
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import * as minimist from 'minimist';
import * as minimist from 'yargs-parser';
import * as path from 'path';
import * as rimraf from 'rimraf';
import * as util from 'util';
Expand Down

0 comments on commit 76ee266

Please sign in to comment.