Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 156dd33

Browse files
bekosFrozenPandaz
authored andcommittedSep 17, 2020
fix(misc): upgrade version of yargs-parser (#3751)
ISSUES CLOSED: #3105
1 parent cbf12f0 commit 156dd33

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed
 

Diff for: ‎package.json

+1
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@
236236
"webpack-subresource-integrity": "1.1.0-rc.6",
237237
"worker-plugin": "3.2.0",
238238
"yargs": "15.4.1",
239+
"yargs-parser": "20.0.0",
239240
"zone.js": "^0.10.0",
240241
"@nrwl/nx-cloud": "10.1.0-beta.2"
241242
},

Diff for: ‎packages/cli/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"dependencies": {
3030
"tmp": "0.0.33",
3131
"yargs": "15.4.1",
32+
"yargs-parser": "20.0.0",
3233
"@nrwl/tao": "*",
3334
"chalk": "2.4.2"
3435
}

Diff for: ‎packages/create-nx-workspace/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"@nrwl/workspace": "*",
3131
"tmp": "0.0.33",
3232
"yargs": "15.4.1",
33+
"yargs-parser": "20.0.0",
3334
"inquirer": "^6.3.1"
3435
}
3536
}

Diff for: ‎packages/tao/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"inquirer": "^6.3.1",
3636
"minimist": "^1.2.0",
3737
"strip-json-comments": "2.0.1",
38-
"fast-levenshtein": "2.0.6"
38+
"fast-levenshtein": "2.0.6",
39+
"yargs-parser": "20.0.0"
3940
}
4041
}

Diff for: ‎packages/workspace/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@
6363
"strip-json-comments": "2.0.1",
6464
"tmp": "0.0.33",
6565
"yargs": "15.4.1",
66+
"yargs-parser": "20.0.0",
6667
"chalk": "2.4.2",
6768
"@nrwl/cli": "*",
6869
"axios": "0.19.2"

Diff for: ‎yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -22052,6 +22052,11 @@ yargs-parser@18.x, yargs-parser@^18.1.0, yargs-parser@^18.1.1, yargs-parser@^18.
2205222052
camelcase "^5.0.0"
2205322053
decamelize "^1.2.0"
2205422054

22055+
yargs-parser@20.0.0:
22056+
version "20.0.0"
22057+
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.0.0.tgz#c65a1daaa977ad63cebdd52159147b789a4e19a9"
22058+
integrity sha512-8eblPHTL7ZWRkyjIZJjnGf+TijiKJSwA24svzLRVvtgoi/RZiKa9fFQTrlx0OKLnyHSdt/enrdadji6WFfESVA==
22059+
2205522060
yargs-parser@^11.1.1:
2205622061
version "11.1.1"
2205722062
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"

0 commit comments

Comments
 (0)
Please sign in to comment.