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

Commit

Permalink
fix: bump yargs from 16.2.0 to 17.0.1 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
ert78gb authored Jun 16, 2021
1 parent 6644624 commit bc352f0
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 20 deletions.
63 changes: 48 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"lib"
],
"dependencies": {
"yargs": "^16.2.0"
"yargs": "^17.0.1"
},
"peerDependencies": {
"jasmine": ">=3.4",
Expand All @@ -47,7 +47,7 @@
"devDependencies": {
"@types/jasmine": "^3.6.3",
"@types/node": "^15.0.0",
"@types/yargs": "^16.0.1",
"@types/yargs": "^17.0.0",
"dotenv": "^10.0.0",
"jasmine": "^3.6.4",
"jasmine-spec-reporter": "^7.0.0",
Expand Down
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/usr/bin/env node
import * as path from "path";
import {parse, register} from "ts-node";
import * as yargs from "yargs";
import yargs from "yargs";

const argv = yargs
const argv = yargs(process.argv.slice(2))
.scriptName('jasmine-ts')
.usage('$0 [options]')
.option('r', {
Expand Down Expand Up @@ -99,7 +99,7 @@ const argv = yargs
.alias('h', 'help')
.alias('v', 'version')
.help()
.argv;
.argv as any;

const TS_NODE_OPTIONS = [
'require',
Expand Down

0 comments on commit bc352f0

Please sign in to comment.