Skip to content

Commit ef562a8

Browse files
authored
Merge pull request #91 from bad4iz/simple-fix
Simple fix
2 parents ff8fb9a + 1e7ad13 commit ef562a8

11 files changed

+56
-103
lines changed

.eslintrc.json

+21-24
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"eslint:recommended",
88
"plugin:react/all",
99
"plugin:@typescript-eslint/recommended",
10-
"plugin:jsdoc/recommended",
11-
"plugin:jest-dom/recommended"
10+
"plugin:jsdoc/recommended"
1211
],
1312
"parser": "@typescript-eslint/parser",
1413
"parserOptions": {
@@ -18,34 +17,35 @@
1817
"ecmaVersion": "latest",
1918
"sourceType": "module"
2019
},
21-
"plugins": [
22-
"react",
23-
"@typescript-eslint",
24-
"simple-import-sort",
25-
"jsdoc",
26-
"jest-dom"
27-
],
20+
"plugins": ["react", "@typescript-eslint", "simple-import-sort", "jsdoc"],
2821
"rules": {
29-
"camelcase": "error",
30-
"no-duplicate-imports": "error",
3122
"@typescript-eslint/ban-ts-comment": "off",
32-
"@typescript-eslint/no-explicit-any": "off",
33-
"no-alert": "error",
3423
"@typescript-eslint/no-empty-function": "off",
35-
"react/no-unknown-property": "off",
36-
"react/no-unescaped-entities ": "off",
37-
"no-console": 1,
38-
"valid-jsdoc": 1,
24+
"@typescript-eslint/no-explicit-any": "off",
25+
"camelcase": "error",
3926
"jsdoc/check-indentation": 1,
4027
"jsdoc/check-line-alignment": 1,
4128
"jsdoc/check-syntax": 1,
4229
"jsdoc/require-description": 1,
4330
"jsdoc/require-description-complete-sentence": 1,
44-
"jsdoc/require-jsdoc": 1,
4531
"jsdoc/require-hyphen-before-param-description": 1,
32+
"jsdoc/require-jsdoc": 1,
4633
"jsdoc/require-returns-description": 0,
47-
"simple-import-sort/imports": "warn",
34+
"no-alert": "error",
35+
"no-console": 1,
36+
"no-duplicate-imports": "error",
37+
"react/no-unescaped-entities ": "off",
38+
"react/no-unknown-property": "off",
4839
"simple-import-sort/exports": "warn",
40+
"simple-import-sort/imports": "warn",
41+
"valid-jsdoc": 1,
42+
"jsdoc/tag-lines": [
43+
"error",
44+
"any",
45+
{
46+
"startLines": 1
47+
}
48+
],
4949
"require-jsdoc": [
5050
1,
5151
{
@@ -84,15 +84,12 @@
8484
},
8585
"overrides": [
8686
{
87-
"files": [
88-
"**/*.ts"
89-
],
87+
"files": ["**/*.ts"],
9088
"rules": {
9189
"require-jsdoc": [
9290
1,
9391
{
94-
"require": {
95-
}
92+
"require": {}
9693
}
9794
],
9895
"valid-jsdoc": [

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"eslint": "8.56.0",
5353
"eslint-plugin-import": "2.29.1",
5454
"eslint-plugin-jest-dom": "5.1.0",
55-
"eslint-plugin-jsdoc": "48.0.4",
55+
"eslint-plugin-jsdoc": "48.2.0",
5656
"eslint-plugin-react": "7.33.2",
5757
"eslint-plugin-simple-import-sort": "10.0.0",
5858
"eslint-plugin-tsdoc": "0.2.17",

src/component/types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ export interface ISelectCertProps {
5151

5252
/**
5353
* Callback error - для перехвата ошибок.
54+
*
5455
* @param {string | void} error
5556
*/
5657
callbackError?: (error: string | void | undefined) => void;

src/component/utils/b64toBlob.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* Конвертирует base64 в Blob object.
3+
*
34
* @param b64Data - Blob data.
45
* @param contentType - Content type.
56
* @param sliceSize - Size of the slice.

src/component/utils/checkQuotes.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* Проверяет, является ли количество кавычек в строке четным числом.
3+
*
34
* @param str - Проверяемая строка.
45
* @returns True, если количество кавычек в строке четно, иначе - false.
56
*/

src/component/utils/hooks/useDoCertsList.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { extract } from '../extract';
66

77
/**
88
* Hook. This function returns a list of certificate labels and thumbprints using CCPA API.
9-
* @returns {void}
9+
*
10+
* @returns A list of certificate labels and thumbprints.
1011
*/
1112
export const useDoCertsList = () =>
1213
useMemo(async () => {

src/component/utils/hooks/useGetCertificate.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { useMemo, useState } from 'react';
44

55
/**
66
* This function returns a certificate object based on a given thumbprint using CCPA API.
7+
*
78
* @param {string} thumbprint - The `thumbprint` parameter is a string that represents the unique
89
* identifier of a certificate. The function `useGetCertificate` uses this parameter to search for a
910
* certificate in a list of certificates and returns the matching certificate.

src/component/utils/signFile.spec.js

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ vi.mock('crypto-pro-cadesplugin');
1111

1212
/**
1313
* Mock default.
14+
*
1415
* @returns {void}
1516
*/
1617
const defaultMock = () => {

src/component/utils/signFile.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import { toBase64 } from './toBase64';
77

88
/**
99
* Подпись файла.
10+
*
1011
* @param params - Parameters.
1112
* @param params.file - Файл на подпись.
1213
* @param params.thumbprint - Печать.

src/component/utils/toBase64.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/**
22
* Конвертируем файл в Base64.
3+
*
34
* @param file - File.
45
* @returns Форматированные данные в Base64.
56
*/

yarn.lock

+25-77
Original file line numberDiff line numberDiff line change
@@ -382,10 +382,10 @@
382382
dependencies:
383383
chalk "^4.1.0"
384384

385-
"@es-joy/jsdoccomment@~0.41.0":
386-
version "0.41.0"
387-
resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz#4a2f7db42209c0425c71a1476ef1bdb6dcd836f6"
388-
integrity sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==
385+
"@es-joy/jsdoccomment@~0.42.0":
386+
version "0.42.0"
387+
resolved "https://registry.yarnpkg.com/@es-joy/jsdoccomment/-/jsdoccomment-0.42.0.tgz#59e878708336aaee88c2b34c894f73dbf77ae2b0"
388+
integrity sha512-R1w57YlVA6+YE01wch3GPYn6bCsrOV3YW/5oGGE2tmX6JcL9Nr+b5IikrjMPF+v9CV3ay+obImEdsDhovhJrzw==
389389
dependencies:
390390
comment-parser "1.4.1"
391391
esquery "^1.5.0"
@@ -557,7 +557,7 @@
557557
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917"
558558
integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==
559559

560-
"@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3":
560+
"@istanbuljs/schema@^0.1.2":
561561
version "0.1.3"
562562
resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98"
563563
integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==
@@ -1004,17 +1004,6 @@
10041004
"@types/babel__core" "^7.20.5"
10051005
react-refresh "^0.14.0"
10061006

1007-
1008-
version "0.33.0"
1009-
resolved "https://registry.yarnpkg.com/@vitest/coverage-c8/-/coverage-c8-0.33.0.tgz#7c8ef0997afcc3f5ab99984c0197ece4451f26b6"
1010-
integrity sha512-DaF1zJz4dcOZS4k/neiQJokmOWqsGXwhthfmUdPGorXIQHjdPvV6JQSYhQDI41MyI8c+IieQUdIDs5XAMHtDDw==
1011-
dependencies:
1012-
"@ampproject/remapping" "^2.2.1"
1013-
c8 "^7.14.0"
1014-
magic-string "^0.30.1"
1015-
picocolors "^1.0.0"
1016-
std-env "^3.3.3"
1017-
10181007
"@vitest/coverage-v8@^1.2.2":
10191008
version "1.2.2"
10201009
resolved "https://registry.yarnpkg.com/@vitest/coverage-v8/-/coverage-v8-1.2.2.tgz#681f4f76de896d0d2484cca32285477e288fec3a"
@@ -1414,24 +1403,6 @@ builtin-modules@^3.3.0:
14141403
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6"
14151404
integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==
14161405

1417-
c8@^7.14.0:
1418-
version "7.14.0"
1419-
resolved "https://registry.yarnpkg.com/c8/-/c8-7.14.0.tgz#f368184c73b125a80565e9ab2396ff0be4d732f3"
1420-
integrity sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==
1421-
dependencies:
1422-
"@bcoe/v8-coverage" "^0.2.3"
1423-
"@istanbuljs/schema" "^0.1.3"
1424-
find-up "^5.0.0"
1425-
foreground-child "^2.0.0"
1426-
istanbul-lib-coverage "^3.2.0"
1427-
istanbul-lib-report "^3.0.0"
1428-
istanbul-reports "^3.1.4"
1429-
rimraf "^3.0.2"
1430-
test-exclude "^6.0.0"
1431-
v8-to-istanbul "^9.0.0"
1432-
yargs "^16.2.0"
1433-
yargs-parser "^20.2.9"
1434-
14351406
cac@^6.7.14:
14361407
version "6.7.14"
14371408
resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959"
@@ -1542,15 +1513,6 @@ cli-truncate@^4.0.0:
15421513
slice-ansi "^5.0.0"
15431514
string-width "^7.0.0"
15441515

1545-
cliui@^7.0.2:
1546-
version "7.0.4"
1547-
resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
1548-
integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
1549-
dependencies:
1550-
string-width "^4.2.0"
1551-
strip-ansi "^6.0.0"
1552-
wrap-ansi "^7.0.0"
1553-
15541516
cliui@^8.0.1:
15551517
version "8.0.1"
15561518
resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa"
@@ -1673,7 +1635,7 @@ cosmiconfig@^8.3.6:
16731635
parse-json "^5.2.0"
16741636
path-type "^4.0.0"
16751637

1676-
cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
1638+
cross-spawn@^7.0.2, cross-spawn@^7.0.3:
16771639
version "7.0.3"
16781640
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
16791641
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
@@ -2005,19 +1967,19 @@ [email protected]:
20051967
"@babel/runtime" "^7.16.3"
20061968
requireindex "^1.2.0"
20071969

2008-
eslint-plugin-jsdoc@48.0.4:
2009-
version "48.0.4"
2010-
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.0.4.tgz#ca54da8937b2f6fd242a16dbb1b9ff5050baf223"
2011-
integrity sha512-A0cH+5svWPXzGZszBjXA1t0aAqVGS+/x3i02KFmb73rU0iMLnadEcVWcD/dGBZHIfAMKr3YpWh58f6wn4N909w==
1970+
eslint-plugin-jsdoc@48.2.0:
1971+
version "48.2.0"
1972+
resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.0.tgz#a726fbd6fa286fad8fc14f0a6aca48488d188d95"
1973+
integrity sha512-O2B1XLBJnUCRkggFzUQ+PBYJDit8iAgXdlu8ucolqGrbmOWPvttZQZX8d1sC0MbqDMSLs8SHSQxaNPRY1RQREg==
20121974
dependencies:
2013-
"@es-joy/jsdoccomment" "~0.41.0"
1975+
"@es-joy/jsdoccomment" "~0.42.0"
20141976
are-docs-informative "^0.0.2"
20151977
comment-parser "1.4.1"
20161978
debug "^4.3.4"
20171979
escape-string-regexp "^4.0.0"
20181980
esquery "^1.5.0"
20191981
is-builtin-module "^3.2.1"
2020-
semver "^7.5.4"
1982+
semver "^7.6.0"
20211983
spdx-expression-parse "^4.0.0"
20221984

20231985
@@ -2281,14 +2243,6 @@ for-each@^0.3.3:
22812243
dependencies:
22822244
is-callable "^1.1.3"
22832245

2284-
foreground-child@^2.0.0:
2285-
version "2.0.0"
2286-
resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53"
2287-
integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==
2288-
dependencies:
2289-
cross-spawn "^7.0.0"
2290-
signal-exit "^3.0.2"
2291-
22922246
fs-extra@~7.0.1:
22932247
version "7.0.1"
22942248
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
@@ -2862,7 +2816,7 @@ isexe@^2.0.0:
28622816
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
28632817
integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
28642818

2865-
istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0, istanbul-lib-coverage@^3.2.2:
2819+
istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.2:
28662820
version "3.2.2"
28672821
resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756"
28682822
integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==
@@ -2885,7 +2839,7 @@ istanbul-lib-source-maps@^4.0.1:
28852839
istanbul-lib-coverage "^3.0.0"
28862840
source-map "^0.6.1"
28872841

2888-
istanbul-reports@^3.1.4, istanbul-reports@^3.1.6:
2842+
istanbul-reports@^3.1.6:
28892843
version "3.1.6"
28902844
resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.6.tgz#2544bcab4768154281a2f0870471902704ccaa1a"
28912845
integrity sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==
@@ -3189,7 +3143,7 @@ lru-cache@^6.0.0:
31893143
dependencies:
31903144
yallist "^4.0.0"
31913145

3192-
magic-string@^0.30.1, magic-string@^0.30.5:
3146+
magic-string@^0.30.5:
31933147
version "0.30.6"
31943148
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.6.tgz#996e21b42f944e45591a68f0905d6a740a12506c"
31953149
integrity sha512-n62qCLbPjNjyo+owKtveQxZFZTBm+Ms6YoGD23Wew6Vw337PElFNifQpknPruVRQV57kVShPnLGo9vWxVhpPvA==
@@ -3934,6 +3888,13 @@ semver@^6.3.1:
39343888
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
39353889
integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
39363890

3891+
semver@^7.6.0:
3892+
version "7.6.0"
3893+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d"
3894+
integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==
3895+
dependencies:
3896+
lru-cache "^6.0.0"
3897+
39373898
set-function-length@^1.1.1:
39383899
version "1.2.0"
39393900
resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.0.tgz#2f81dc6c16c7059bda5ab7c82c11f03a515ed8e1"
@@ -4086,7 +4047,7 @@ [email protected]:
40864047
resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b"
40874048
integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==
40884049

4089-
std-env@^3.3.3, std-env@^3.5.0:
4050+
std-env@^3.5.0:
40904051
version "3.7.0"
40914052
resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2"
40924053
integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==
@@ -4444,7 +4405,7 @@ util-deprecate@^1.0.1:
44444405
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
44454406
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
44464407

4447-
v8-to-istanbul@^9.0.0, v8-to-istanbul@^9.2.0:
4408+
v8-to-istanbul@^9.2.0:
44484409
version "9.2.0"
44494410
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad"
44504411
integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==
@@ -4682,7 +4643,7 @@ [email protected]:
46824643
resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2"
46834644
integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==
46844645

4685-
yargs-parser@^20.2.2, yargs-parser@^20.2.3, yargs-parser@^20.2.9:
4646+
yargs-parser@^20.2.3:
46864647
version "20.2.9"
46874648
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
46884649
integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
@@ -4692,19 +4653,6 @@ yargs-parser@^21.1.1:
46924653
resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35"
46934654
integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==
46944655

4695-
yargs@^16.2.0:
4696-
version "16.2.0"
4697-
resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
4698-
integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
4699-
dependencies:
4700-
cliui "^7.0.2"
4701-
escalade "^3.1.1"
4702-
get-caller-file "^2.0.5"
4703-
require-directory "^2.1.1"
4704-
string-width "^4.2.0"
4705-
y18n "^5.0.5"
4706-
yargs-parser "^20.2.2"
4707-
47084656
yargs@^17.0.0:
47094657
version "17.7.2"
47104658
resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269"

0 commit comments

Comments
 (0)