@oclif/plugin-commands 3.0.7 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -20,7 +20,7 @@ $ npm install -g @oclif/plugin-commands
20
20
  $ oclif-example COMMAND
21
21
  running command...
22
22
  $ oclif-example (--version)
23
- @oclif/plugin-commands/3.0.7 linux-x64 node-v20.9.0
23
+ @oclif/plugin-commands/3.1.0 linux-x64 node-v20.10.0
24
24
  $ oclif-example --help [COMMAND]
25
25
  USAGE
26
26
  $ oclif-example COMMAND
@@ -39,14 +39,15 @@ list all the commands
39
39
 
40
40
  ```
41
41
  USAGE
42
- $ oclif-example commands [--json] [-h] [--hidden] [--tree] [--columns <value> | -x] [--filter <value>]
43
- [--no-header | [--csv | --no-truncate]] [--output csv|json|yaml | | ] [--sort <value>]
42
+ $ oclif-example commands [--json] [--deprecated] [-h] [--hidden] [--tree] [--columns <value> | -x] [--filter
43
+ <value>] [--no-header | [--csv | --no-truncate]] [--output csv|json|yaml | | ] [--sort <value>]
44
44
 
45
45
  FLAGS
46
46
  -h, --help Show CLI help.
47
47
  -x, --extended show extra columns
48
48
  --columns=<value> only show provided columns (comma-separated)
49
49
  --csv output is csv format [alias: --output=csv]
50
+ --deprecated show deprecated commands
50
51
  --filter=<value> filter property by partial string matching, ex: name=foo
51
52
  --hidden show hidden commands
52
53
  --no-header hide table header from output
@@ -63,5 +64,5 @@ DESCRIPTION
63
64
  list all the commands
64
65
  ```
65
66
 
66
- _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.0.7/src/commands/commands.ts)_
67
+ _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.1.0/src/commands/commands.ts)_
67
68
  <!-- commandsstop -->
@@ -11,6 +11,7 @@ export default class Commands extends Command {
11
11
  'no-truncate': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
12
12
  output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined>;
13
13
  sort: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined>;
14
+ deprecated: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
14
15
  help: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<void>;
15
16
  hidden: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
16
17
  tree: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
@@ -9,6 +9,7 @@ export default class Commands extends Command {
9
9
  static description = 'list all the commands';
10
10
  static enableJsonFlag = true;
11
11
  static flags = {
12
+ deprecated: Flags.boolean({ description: 'show deprecated commands' }),
12
13
  help: Flags.help({ char: 'h' }),
13
14
  hidden: Flags.boolean({ description: 'show hidden commands' }),
14
15
  tree: Flags.boolean({ description: 'show tree of commands' }),
@@ -20,6 +21,10 @@ export default class Commands extends Command {
20
21
  if (!flags.hidden) {
21
22
  commands = commands.filter((c) => !c.hidden);
22
23
  }
24
+ if (!flags.deprecated) {
25
+ const deprecatedAliases = new Set(commands.filter((c) => c.deprecateAliases).flatMap((c) => c.aliases));
26
+ commands = commands.filter((c) => c.state !== 'deprecated' && !deprecatedAliases.has(c.id));
27
+ }
23
28
  const { config } = this;
24
29
  commands = sortBy(commands, 'id').map((command) => {
25
30
  // Template supported fields.
package/oclif.lock CHANGED
@@ -455,10 +455,10 @@
455
455
  resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.9.1.tgz#449dfa81a57a1d755b09aa58d826c1262e4283b4"
456
456
  integrity sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==
457
457
 
458
- "@eslint/eslintrc@^2.1.3":
459
- version "2.1.3"
460
- resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.3.tgz#797470a75fe0fbd5a53350ee715e85e87baff22d"
461
- integrity sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==
458
+ "@eslint/eslintrc@^2.1.4":
459
+ version "2.1.4"
460
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
461
+ integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
462
462
  dependencies:
463
463
  ajv "^6.12.4"
464
464
  debug "^4.3.2"
@@ -470,10 +470,10 @@
470
470
  minimatch "^3.1.2"
471
471
  strip-json-comments "^3.1.1"
472
472
 
473
- "@eslint/js@8.53.0":
474
- version "8.53.0"
475
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.53.0.tgz#bea56f2ed2b5baea164348ff4d5a879f6f81f20d"
476
- integrity sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==
473
+ "@eslint/js@8.56.0":
474
+ version "8.56.0"
475
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b"
476
+ integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==
477
477
 
478
478
  "@gar/promisify@^1.0.1":
479
479
  version "1.1.2"
@@ -771,10 +771,10 @@
771
771
  wordwrap "^1.0.0"
772
772
  wrap-ansi "^7.0.0"
773
773
 
774
- "@oclif/core@^3.0.0-beta.19", "@oclif/core@^3.0.4", "@oclif/core@^3.11.0", "@oclif/core@^3.3.1":
775
- version "3.11.0"
776
- resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.11.0.tgz#dadfac39238af3b717e33b910dde1f1f0fd2105e"
777
- integrity sha512-9A2LhDQATf1vrRqPoO0gGuBrey0jt3kDafC+eazxTNWV2EvlEpgY2587iyrxPK/fL2xg7f+0mtxYaSHdO2k8eg==
774
+ "@oclif/core@^3.0.4", "@oclif/core@^3.15.0", "@oclif/core@^3.15.1", "@oclif/core@^3.3.1":
775
+ version "3.15.1"
776
+ resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.15.1.tgz#e03fa775d658e76056150ac0c7b8097b6f51ab9c"
777
+ integrity sha512-d4457zVo2agLoJG97CmdY6M3BeP5sogBP3BtP65hUvJH6wA6Us1hdY3UiPPtD/ZzZImq7cATVMABuCF9tM+rWA==
778
778
  dependencies:
779
779
  ansi-escapes "^4.3.2"
780
780
  ansi-styles "^4.3.0"
@@ -782,6 +782,7 @@
782
782
  chalk "^4.1.2"
783
783
  clean-stack "^3.0.1"
784
784
  cli-progress "^3.12.0"
785
+ color "^4.2.3"
785
786
  debug "^4.3.4"
786
787
  ejs "^3.1.9"
787
788
  get-package-type "^0.1.0"
@@ -792,7 +793,7 @@
792
793
  js-yaml "^3.14.1"
793
794
  natural-orderby "^2.0.3"
794
795
  object-treeify "^1.1.33"
795
- password-prompt "^1.1.2"
796
+ password-prompt "^1.1.3"
796
797
  slice-ansi "^4.0.0"
797
798
  string-width "^4.2.3"
798
799
  strip-ansi "^6.0.1"
@@ -835,14 +836,14 @@
835
836
  resolved "https://registry.yarnpkg.com/@oclif/prettier-config/-/prettier-config-0.2.1.tgz#1def9f38134f9bfb229257f48a35f7d0d183dc78"
836
837
  integrity sha512-XB8kwQj8zynXjIIWRm+6gO/r8Qft2xKtwBMSmq1JRqtA6TpwpqECqiu8LosBCyg2JBXuUy2lU23/L98KIR7FrQ==
837
838
 
838
- "@oclif/test@^3.0.2":
839
- version "3.0.2"
840
- resolved "https://registry.yarnpkg.com/@oclif/test/-/test-3.0.2.tgz#aab9443a1eeb8d996d28020344e6abf7f82c688e"
841
- integrity sha512-zTLHSQ1A/9jrzW+jrX9qc1B1pyihtxO+87oW/5lHnNnztvEnmfdcxVKe8CYobpNiSJtAQMBY5BTxgvm9eaZD5Q==
839
+ "@oclif/test@^3.1.7":
840
+ version "3.1.7"
841
+ resolved "https://registry.yarnpkg.com/@oclif/test/-/test-3.1.7.tgz#614a101a880b6a8f7ef7439686495a5a6d64b051"
842
+ integrity sha512-lEKq/VKqxwSribfvxXu112KTrgo/WsHzoFnUZRv9YJe7Ho6FCkmKs6n362KHWJgSnBMc4rXMJNJQe62HzHbeoA==
842
843
  dependencies:
843
- "@oclif/core" "^3.0.0-beta.19"
844
+ "@oclif/core" "^3.15.1"
844
845
  chai "^4.3.10"
845
- fancy-test "^3.0.1"
846
+ fancy-test "^3.0.7"
846
847
 
847
848
  "@octokit/auth-token@^2.4.4":
848
849
  version "2.5.0"
@@ -1032,10 +1033,10 @@
1032
1033
  "@types/node" "*"
1033
1034
  "@types/responselike" "^1.0.0"
1034
1035
 
1035
- "@types/chai@*", "@types/chai@^4.3.10":
1036
- version "4.3.10"
1037
- resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.10.tgz#2ad2959d1767edee5b0e4efb1a0cd2b500747317"
1038
- integrity sha512-of+ICnbqjmFCiixUnqRulbylyXQrPqIGf/B3Jax1wIF3DvSheysQxAWvqHhZiW3IQrycvokcLcFQlveGp+vyNg==
1036
+ "@types/chai@*", "@types/chai@^4.3.11":
1037
+ version "4.3.11"
1038
+ resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.3.11.tgz#e95050bf79a932cb7305dd130254ccdf9bde671c"
1039
+ integrity sha512-qQR1dr2rGIHYlJulmr8Ioq3De0Le9E4MJ5AiaeAETJJpndT1uUNHsGFK3L/UIu+rbkQSdj8J/w2bCsBZc/Y5fQ==
1039
1040
 
1040
1041
  "@types/cli-progress@^3.11.0":
1041
1042
  version "3.11.0"
@@ -1071,10 +1072,10 @@
1071
1072
  dependencies:
1072
1073
  "@types/node" "*"
1073
1074
 
1074
- "@types/lodash.pickby@^4.6.8":
1075
- version "4.6.8"
1076
- resolved "https://registry.yarnpkg.com/@types/lodash.pickby/-/lodash.pickby-4.6.8.tgz#1acdd5c45fd98acbab9ebb2a13082b7beb737bac"
1077
- integrity sha512-V9FXPmtaawzkyXQ3zVMtLrNinVSUTGNzzf6rkngzDZigzGxvRus+QT3HYpYvoEKMe1/t+sJtw8odeN1qf7sDmA==
1075
+ "@types/lodash.pickby@^4.6.9":
1076
+ version "4.6.9"
1077
+ resolved "https://registry.yarnpkg.com/@types/lodash.pickby/-/lodash.pickby-4.6.9.tgz#b6d72b1adf8601aa76736f298adcbaa8f734b831"
1078
+ integrity sha512-SPI248FYnyd3jOxDeJq2vX2UKQnDzqacuqdeOVqwE1MPSk8gN8TA3FcHSMQWLlpBnuHgXvgKInvywbOFbidpJA==
1078
1079
  dependencies:
1079
1080
  "@types/lodash" "*"
1080
1081
 
@@ -1114,10 +1115,10 @@
1114
1115
  resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.3.tgz#dd249cef80c6fff2ba6a0d4e5beca913e04e25f8"
1115
1116
  integrity sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==
1116
1117
 
1117
- "@types/mocha@^10.0.4":
1118
- version "10.0.4"
1119
- resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.4.tgz#b5331955ebca216604691fd4fcd2dbdc2bd559a4"
1120
- integrity sha512-xKU7bUjiFTIttpWaIZ9qvgg+22O1nmbA+HRxdlR+u6TWsGfmFdXrheJoK4fFxrHNVIOBDvDNKZG+LYBpMHpX3w==
1118
+ "@types/mocha@^10.0.6":
1119
+ version "10.0.6"
1120
+ resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.6.tgz#818551d39113081048bdddbef96701b4e8bb9d1b"
1121
+ integrity sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg==
1121
1122
 
1122
1123
  "@types/nock@^11.1.0":
1123
1124
  version "11.1.0"
@@ -1137,9 +1138,9 @@
1137
1138
  integrity sha512-qjd88DrCxupx/kJD5yQgZdcYKZKSIGBVDIBE1/LTGcNm3d2Np/jxojkdePDdfnBHJc5W7vSMpbJ1aB7p/Py69A==
1138
1139
 
1139
1140
  "@types/node@^18":
1140
- version "18.18.9"
1141
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.18.9.tgz#5527ea1832db3bba8eb8023ce8497b7d3f299592"
1142
- integrity sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==
1141
+ version "18.19.3"
1142
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.3.tgz#e4723c4cb385641d61b983f6fe0b716abd5f8fc0"
1143
+ integrity sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==
1143
1144
  dependencies:
1144
1145
  undici-types "~5.26.4"
1145
1146
 
@@ -1180,16 +1181,16 @@
1180
1181
  "@types/expect" "^1.20.4"
1181
1182
  "@types/node" "*"
1182
1183
 
1183
- "@typescript-eslint/eslint-plugin@^6.9.1":
1184
- version "6.10.0"
1185
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.10.0.tgz#cfe2bd34e26d2289212946b96ab19dcad64b661a"
1186
- integrity sha512-uoLj4g2OTL8rfUQVx2AFO1hp/zja1wABJq77P6IclQs6I/m9GLrm7jCdgzZkvWdDCQf1uEvoa8s8CupsgWQgVg==
1184
+ "@typescript-eslint/eslint-plugin@^6.15.0":
1185
+ version "6.16.0"
1186
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.16.0.tgz#cc29fbd208ea976de3db7feb07755bba0ce8d8bc"
1187
+ integrity sha512-O5f7Kv5o4dLWQtPX4ywPPa+v9G+1q1x8mz0Kr0pXUtKsevo+gIJHLkGc8RxaZWtP8RrhwhSNIWThnW42K9/0rQ==
1187
1188
  dependencies:
1188
1189
  "@eslint-community/regexpp" "^4.5.1"
1189
- "@typescript-eslint/scope-manager" "6.10.0"
1190
- "@typescript-eslint/type-utils" "6.10.0"
1191
- "@typescript-eslint/utils" "6.10.0"
1192
- "@typescript-eslint/visitor-keys" "6.10.0"
1190
+ "@typescript-eslint/scope-manager" "6.16.0"
1191
+ "@typescript-eslint/type-utils" "6.16.0"
1192
+ "@typescript-eslint/utils" "6.16.0"
1193
+ "@typescript-eslint/visitor-keys" "6.16.0"
1193
1194
  debug "^4.3.4"
1194
1195
  graphemer "^1.4.0"
1195
1196
  ignore "^5.2.4"
@@ -1197,119 +1198,120 @@
1197
1198
  semver "^7.5.4"
1198
1199
  ts-api-utils "^1.0.1"
1199
1200
 
1200
- "@typescript-eslint/parser@^6.9.1":
1201
- version "6.10.0"
1202
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.10.0.tgz#578af79ae7273193b0b6b61a742a2bc8e02f875a"
1203
- integrity sha512-+sZwIj+s+io9ozSxIWbNB5873OSdfeBEH/FR0re14WLI6BaKuSOnnwCJ2foUiu8uXf4dRp1UqHP0vrZ1zXGrog==
1201
+ "@typescript-eslint/parser@^6.15.0":
1202
+ version "6.16.0"
1203
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.16.0.tgz#36f39f63b126aa25af2ad2df13d9891e9fd5b40c"
1204
+ integrity sha512-H2GM3eUo12HpKZU9njig3DF5zJ58ja6ahj1GoHEHOgQvYxzoFJJEvC1MQ7T2l9Ha+69ZSOn7RTxOdpC/y3ikMw==
1204
1205
  dependencies:
1205
- "@typescript-eslint/scope-manager" "6.10.0"
1206
- "@typescript-eslint/types" "6.10.0"
1207
- "@typescript-eslint/typescript-estree" "6.10.0"
1208
- "@typescript-eslint/visitor-keys" "6.10.0"
1206
+ "@typescript-eslint/scope-manager" "6.16.0"
1207
+ "@typescript-eslint/types" "6.16.0"
1208
+ "@typescript-eslint/typescript-estree" "6.16.0"
1209
+ "@typescript-eslint/visitor-keys" "6.16.0"
1209
1210
  debug "^4.3.4"
1210
1211
 
1211
- "@typescript-eslint/scope-manager@6.10.0":
1212
- version "6.10.0"
1213
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.10.0.tgz#b0276118b13d16f72809e3cecc86a72c93708540"
1214
- integrity sha512-TN/plV7dzqqC2iPNf1KrxozDgZs53Gfgg5ZHyw8erd6jd5Ta/JIEcdCheXFt9b1NYb93a1wmIIVW/2gLkombDg==
1212
+ "@typescript-eslint/scope-manager@6.14.0":
1213
+ version "6.14.0"
1214
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.14.0.tgz#53d24363fdb5ee0d1d8cda4ed5e5321272ab3d48"
1215
+ integrity sha512-VT7CFWHbZipPncAZtuALr9y3EuzY1b1t1AEkIq2bTXUPKw+pHoXflGNG5L+Gv6nKul1cz1VH8fz16IThIU0tdg==
1215
1216
  dependencies:
1216
- "@typescript-eslint/types" "6.10.0"
1217
- "@typescript-eslint/visitor-keys" "6.10.0"
1217
+ "@typescript-eslint/types" "6.14.0"
1218
+ "@typescript-eslint/visitor-keys" "6.14.0"
1218
1219
 
1219
- "@typescript-eslint/scope-manager@6.9.1":
1220
- version "6.9.1"
1221
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.9.1.tgz#e96afeb9a68ad1cd816dba233351f61e13956b75"
1222
- integrity sha512-38IxvKB6NAne3g/+MyXMs2Cda/Sz+CEpmm+KLGEM8hx/CvnSRuw51i8ukfwB/B/sESdeTGet1NH1Wj7I0YXswg==
1220
+ "@typescript-eslint/scope-manager@6.16.0":
1221
+ version "6.16.0"
1222
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.16.0.tgz#f3e9a00fbc1d0701356359cd56489c54d9e37168"
1223
+ integrity sha512-0N7Y9DSPdaBQ3sqSCwlrm9zJwkpOuc6HYm7LpzLAPqBL7dmzAUimr4M29dMkOP/tEwvOCC/Cxo//yOfJD3HUiw==
1223
1224
  dependencies:
1224
- "@typescript-eslint/types" "6.9.1"
1225
- "@typescript-eslint/visitor-keys" "6.9.1"
1225
+ "@typescript-eslint/types" "6.16.0"
1226
+ "@typescript-eslint/visitor-keys" "6.16.0"
1226
1227
 
1227
- "@typescript-eslint/type-utils@6.10.0":
1228
- version "6.10.0"
1229
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.10.0.tgz#1007faede067c78bdbcef2e8abb31437e163e2e1"
1230
- integrity sha512-wYpPs3hgTFblMYwbYWPT3eZtaDOjbLyIYuqpwuLBBqhLiuvJ+9sEp2gNRJEtR5N/c9G1uTtQQL5AhV0fEPJYcg==
1228
+ "@typescript-eslint/type-utils@6.16.0":
1229
+ version "6.16.0"
1230
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.16.0.tgz#5f21c3e49e540ad132dc87fc99af463c184d5ed1"
1231
+ integrity sha512-ThmrEOcARmOnoyQfYkHw/DX2SEYBalVECmoldVuH6qagKROp/jMnfXpAU/pAIWub9c4YTxga+XwgAkoA0pxfmg==
1231
1232
  dependencies:
1232
- "@typescript-eslint/typescript-estree" "6.10.0"
1233
- "@typescript-eslint/utils" "6.10.0"
1233
+ "@typescript-eslint/typescript-estree" "6.16.0"
1234
+ "@typescript-eslint/utils" "6.16.0"
1234
1235
  debug "^4.3.4"
1235
1236
  ts-api-utils "^1.0.1"
1236
1237
 
1237
- "@typescript-eslint/types@6.10.0":
1238
- version "6.10.0"
1239
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.10.0.tgz#f4f0a84aeb2ac546f21a66c6e0da92420e921367"
1240
- integrity sha512-36Fq1PWh9dusgo3vH7qmQAj5/AZqARky1Wi6WpINxB6SkQdY5vQoT2/7rW7uBIsPDcvvGCLi4r10p0OJ7ITAeg==
1238
+ "@typescript-eslint/types@6.14.0":
1239
+ version "6.14.0"
1240
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.14.0.tgz#935307f7a931016b7a5eb25d494ea3e1f613e929"
1241
+ integrity sha512-uty9H2K4Xs8E47z3SnXEPRNDfsis8JO27amp2GNCnzGETEW3yTqEIVg5+AI7U276oGF/tw6ZA+UesxeQ104ceA==
1241
1242
 
1242
- "@typescript-eslint/types@6.9.1":
1243
- version "6.9.1"
1244
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.9.1.tgz#a6cfc20db0fcedcb2f397ea728ef583e0ee72459"
1245
- integrity sha512-BUGslGOb14zUHOUmDB2FfT6SI1CcZEJYfF3qFwBeUrU6srJfzANonwRYHDpLBuzbq3HaoF2XL2hcr01c8f8OaQ==
1243
+ "@typescript-eslint/types@6.16.0":
1244
+ version "6.16.0"
1245
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.16.0.tgz#a3abe0045737d44d8234708d5ed8fef5d59dc91e"
1246
+ integrity sha512-hvDFpLEvTJoHutVl87+MG/c5C8I6LOgEx05zExTSJDEVU7hhR3jhV8M5zuggbdFCw98+HhZWPHZeKS97kS3JoQ==
1246
1247
 
1247
- "@typescript-eslint/typescript-estree@6.10.0":
1248
- version "6.10.0"
1249
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.10.0.tgz#667381eed6f723a1a8ad7590a31f312e31e07697"
1250
- integrity sha512-ek0Eyuy6P15LJVeghbWhSrBCj/vJpPXXR+EpaRZqou7achUWL8IdYnMSC5WHAeTWswYQuP2hAZgij/bC9fanBg==
1248
+ "@typescript-eslint/typescript-estree@6.14.0":
1249
+ version "6.14.0"
1250
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.14.0.tgz#90c7ddd45cd22139adf3d4577580d04c9189ac13"
1251
+ integrity sha512-yPkaLwK0yH2mZKFE/bXkPAkkFgOv15GJAUzgUVonAbv0Hr4PK/N2yaA/4XQbTZQdygiDkpt5DkxPELqHguNvyw==
1251
1252
  dependencies:
1252
- "@typescript-eslint/types" "6.10.0"
1253
- "@typescript-eslint/visitor-keys" "6.10.0"
1253
+ "@typescript-eslint/types" "6.14.0"
1254
+ "@typescript-eslint/visitor-keys" "6.14.0"
1254
1255
  debug "^4.3.4"
1255
1256
  globby "^11.1.0"
1256
1257
  is-glob "^4.0.3"
1257
1258
  semver "^7.5.4"
1258
1259
  ts-api-utils "^1.0.1"
1259
1260
 
1260
- "@typescript-eslint/typescript-estree@6.9.1":
1261
- version "6.9.1"
1262
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.9.1.tgz#8c77910a49a04f0607ba94d78772da07dab275ad"
1263
- integrity sha512-U+mUylTHfcqeO7mLWVQ5W/tMLXqVpRv61wm9ZtfE5egz7gtnmqVIw9ryh0mgIlkKk9rZLY3UHygsBSdB9/ftyw==
1261
+ "@typescript-eslint/typescript-estree@6.16.0":
1262
+ version "6.16.0"
1263
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.16.0.tgz#d6e0578e4f593045f0df06c4b3a22bd6f13f2d03"
1264
+ integrity sha512-VTWZuixh/vr7nih6CfrdpmFNLEnoVBF1skfjdyGnNwXOH1SLeHItGdZDHhhAIzd3ACazyY2Fg76zuzOVTaknGA==
1264
1265
  dependencies:
1265
- "@typescript-eslint/types" "6.9.1"
1266
- "@typescript-eslint/visitor-keys" "6.9.1"
1266
+ "@typescript-eslint/types" "6.16.0"
1267
+ "@typescript-eslint/visitor-keys" "6.16.0"
1267
1268
  debug "^4.3.4"
1268
1269
  globby "^11.1.0"
1269
1270
  is-glob "^4.0.3"
1271
+ minimatch "9.0.3"
1270
1272
  semver "^7.5.4"
1271
1273
  ts-api-utils "^1.0.1"
1272
1274
 
1273
- "@typescript-eslint/utils@6.10.0":
1274
- version "6.10.0"
1275
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.10.0.tgz#4d76062d94413c30e402c9b0df8c14aef8d77336"
1276
- integrity sha512-v+pJ1/RcVyRc0o4wAGux9x42RHmAjIGzPRo538Z8M1tVx6HOnoQBCX/NoadHQlZeC+QO2yr4nNSFWOoraZCAyg==
1275
+ "@typescript-eslint/utils@6.16.0":
1276
+ version "6.16.0"
1277
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.16.0.tgz#1c291492d34670f9210d2b7fcf6b402bea3134ae"
1278
+ integrity sha512-T83QPKrBm6n//q9mv7oiSvy/Xq/7Hyw9SzSEhMHJwznEmQayfBM87+oAlkNAMEO7/MjIwKyOHgBJbxB0s7gx2A==
1277
1279
  dependencies:
1278
1280
  "@eslint-community/eslint-utils" "^4.4.0"
1279
1281
  "@types/json-schema" "^7.0.12"
1280
1282
  "@types/semver" "^7.5.0"
1281
- "@typescript-eslint/scope-manager" "6.10.0"
1282
- "@typescript-eslint/types" "6.10.0"
1283
- "@typescript-eslint/typescript-estree" "6.10.0"
1283
+ "@typescript-eslint/scope-manager" "6.16.0"
1284
+ "@typescript-eslint/types" "6.16.0"
1285
+ "@typescript-eslint/typescript-estree" "6.16.0"
1284
1286
  semver "^7.5.4"
1285
1287
 
1286
- "@typescript-eslint/utils@^6.7.5":
1287
- version "6.9.1"
1288
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.9.1.tgz#763da41281ef0d16974517b5f0d02d85897a1c1e"
1289
- integrity sha512-L1T0A5nFdQrMVunpZgzqPL6y2wVreSyHhKGZryS6jrEN7bD9NplVAyMryUhXsQ4TWLnZmxc2ekar/lSGIlprCA==
1288
+ "@typescript-eslint/utils@^6.13.0":
1289
+ version "6.14.0"
1290
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.14.0.tgz#856a9e274367d99ffbd39c48128b93a86c4261e3"
1291
+ integrity sha512-XwRTnbvRr7Ey9a1NT6jqdKX8y/atWG+8fAIu3z73HSP8h06i3r/ClMhmaF/RGWGW1tHJEwij1uEg2GbEmPYvYg==
1290
1292
  dependencies:
1291
1293
  "@eslint-community/eslint-utils" "^4.4.0"
1292
1294
  "@types/json-schema" "^7.0.12"
1293
1295
  "@types/semver" "^7.5.0"
1294
- "@typescript-eslint/scope-manager" "6.9.1"
1295
- "@typescript-eslint/types" "6.9.1"
1296
- "@typescript-eslint/typescript-estree" "6.9.1"
1296
+ "@typescript-eslint/scope-manager" "6.14.0"
1297
+ "@typescript-eslint/types" "6.14.0"
1298
+ "@typescript-eslint/typescript-estree" "6.14.0"
1297
1299
  semver "^7.5.4"
1298
1300
 
1299
- "@typescript-eslint/visitor-keys@6.10.0":
1300
- version "6.10.0"
1301
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.10.0.tgz#b9eaf855a1ac7e95633ae1073af43d451e8f84e3"
1302
- integrity sha512-xMGluxQIEtOM7bqFCo+rCMh5fqI+ZxV5RUUOa29iVPz1OgCZrtc7rFnz5cLUazlkPKYqX+75iuDq7m0HQ48nCg==
1301
+ "@typescript-eslint/visitor-keys@6.14.0":
1302
+ version "6.14.0"
1303
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.14.0.tgz#1d1d486581819287de824a56c22f32543561138e"
1304
+ integrity sha512-fB5cw6GRhJUz03MrROVuj5Zm/Q+XWlVdIsFj+Zb1Hvqouc8t+XP2H5y53QYU/MGtd2dPg6/vJJlhoX3xc2ehfw==
1303
1305
  dependencies:
1304
- "@typescript-eslint/types" "6.10.0"
1306
+ "@typescript-eslint/types" "6.14.0"
1305
1307
  eslint-visitor-keys "^3.4.1"
1306
1308
 
1307
- "@typescript-eslint/visitor-keys@6.9.1":
1308
- version "6.9.1"
1309
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.9.1.tgz#6753a9225a0ba00459b15d6456b9c2780b66707d"
1310
- integrity sha512-MUaPUe/QRLEffARsmNfmpghuQkW436DvESW+h+M52w0coICHRfD6Np9/K6PdACwnrq1HmuLl+cSPZaJmeVPkSw==
1309
+ "@typescript-eslint/visitor-keys@6.16.0":
1310
+ version "6.16.0"
1311
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.16.0.tgz#d50da18a05d91318ed3e7e8889bda0edc35f3a10"
1312
+ integrity sha512-QSFQLruk7fhs91a/Ep/LqRdbJCZ1Rq03rqBdKT5Ky17Sz8zRLUksqIe9DW0pKtg/Z35/ztbLQ6qpOCN6rOC11A==
1311
1313
  dependencies:
1312
- "@typescript-eslint/types" "6.9.1"
1314
+ "@typescript-eslint/types" "6.16.0"
1313
1315
  eslint-visitor-keys "^3.4.1"
1314
1316
 
1315
1317
  "@ungap/structured-clone@^1.2.0":
@@ -1340,12 +1342,7 @@ acorn-walk@^8.1.1:
1340
1342
  resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
1341
1343
  integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==
1342
1344
 
1343
- acorn@^8.4.1:
1344
- version "8.8.2"
1345
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a"
1346
- integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==
1347
-
1348
- acorn@^8.9.0:
1345
+ acorn@^8.4.1, acorn@^8.9.0:
1349
1346
  version "8.10.0"
1350
1347
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
1351
1348
  integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
@@ -2096,16 +2093,32 @@ color-name@1.1.3:
2096
2093
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
2097
2094
  integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
2098
2095
 
2099
- color-name@~1.1.4:
2096
+ color-name@^1.0.0, color-name@~1.1.4:
2100
2097
  version "1.1.4"
2101
2098
  resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
2102
2099
  integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
2103
2100
 
2101
+ color-string@^1.9.0:
2102
+ version "1.9.1"
2103
+ resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
2104
+ integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
2105
+ dependencies:
2106
+ color-name "^1.0.0"
2107
+ simple-swizzle "^0.2.2"
2108
+
2104
2109
  color-support@^1.1.2:
2105
2110
  version "1.1.3"
2106
2111
  resolved "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2"
2107
2112
  integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==
2108
2113
 
2114
+ color@^4.2.3:
2115
+ version "4.2.3"
2116
+ resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a"
2117
+ integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==
2118
+ dependencies:
2119
+ color-convert "^2.0.1"
2120
+ color-string "^1.9.0"
2121
+
2109
2122
  colorette@^2.0.20:
2110
2123
  version "2.0.20"
2111
2124
  resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
@@ -2388,7 +2401,7 @@ dezalgo@^1.0.0:
2388
2401
  asap "^2.0.0"
2389
2402
  wrappy "1"
2390
2403
 
2391
- diff@5.0.0, diff@^5.0.0:
2404
+ diff@5.0.0:
2392
2405
  version "5.0.0"
2393
2406
  resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
2394
2407
  integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
@@ -2398,7 +2411,7 @@ diff@^4.0.1:
2398
2411
  resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
2399
2412
  integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
2400
2413
 
2401
- diff@^5.1.0:
2414
+ diff@^5.0.0, diff@^5.1.0:
2402
2415
  version "5.1.0"
2403
2416
  resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
2404
2417
  integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
@@ -2595,19 +2608,19 @@ escape-string-regexp@^1.0.5:
2595
2608
  resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
2596
2609
  integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
2597
2610
 
2598
- eslint-config-oclif-typescript@^3.0.13:
2599
- version "3.0.13"
2600
- resolved "https://registry.yarnpkg.com/eslint-config-oclif-typescript/-/eslint-config-oclif-typescript-3.0.13.tgz#be9fd042f3e5143963d77c2be8ad78851109b13c"
2601
- integrity sha512-w+lMp9Wb2mAMJBl+iHWbJYAIVqscctYBMDfJksdy5Mn3jAhQJKsMiDH84KayodTIjQGMcKCgyGALTqkSxvNjaQ==
2611
+ eslint-config-oclif-typescript@^3.0.31:
2612
+ version "3.0.31"
2613
+ resolved "https://registry.yarnpkg.com/eslint-config-oclif-typescript/-/eslint-config-oclif-typescript-3.0.31.tgz#2aa70fdf4caae14e1e01f47278941fd271f4986d"
2614
+ integrity sha512-j5iNQtLjCZ2Mwkx/0z4zpoBn5YbMx7iwK4DICUWY4QA+KwZ5vyWISrybBjMFSiLHHM7todeE5xmufk8ZTrw+tA==
2602
2615
  dependencies:
2603
- "@typescript-eslint/eslint-plugin" "^6.9.1"
2604
- "@typescript-eslint/parser" "^6.9.1"
2616
+ "@typescript-eslint/eslint-plugin" "^6.15.0"
2617
+ "@typescript-eslint/parser" "^6.15.0"
2605
2618
  eslint-config-xo-space "^0.34.0"
2606
2619
  eslint-import-resolver-typescript "^3.6.1"
2607
- eslint-plugin-import "^2.29.0"
2620
+ eslint-plugin-import "^2.29.1"
2608
2621
  eslint-plugin-mocha "^10.2.0"
2609
2622
  eslint-plugin-node "^11.1.0"
2610
- eslint-plugin-perfectionist "^2.2.0"
2623
+ eslint-plugin-perfectionist "^2.5.0"
2611
2624
 
2612
2625
  eslint-config-oclif@^5.0.0:
2613
2626
  version "5.0.0"
@@ -2619,10 +2632,10 @@ eslint-config-oclif@^5.0.0:
2619
2632
  eslint-plugin-node "^11.1.0"
2620
2633
  eslint-plugin-unicorn "^48.0.1"
2621
2634
 
2622
- eslint-config-prettier@^9.0.0:
2623
- version "9.0.0"
2624
- resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz#eb25485946dd0c66cd216a46232dc05451518d1f"
2625
- integrity sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==
2635
+ eslint-config-prettier@^9.1.0:
2636
+ version "9.1.0"
2637
+ resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz#31af3d94578645966c082fcb71a5846d3c94867f"
2638
+ integrity sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==
2626
2639
 
2627
2640
  eslint-config-xo-space@^0.34.0:
2628
2641
  version "0.34.0"
@@ -2675,10 +2688,10 @@ eslint-plugin-es@^3.0.0:
2675
2688
  eslint-utils "^2.0.0"
2676
2689
  regexpp "^3.0.0"
2677
2690
 
2678
- eslint-plugin-import@^2.29.0:
2679
- version "2.29.0"
2680
- resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz#8133232e4329ee344f2f612885ac3073b0b7e155"
2681
- integrity sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==
2691
+ eslint-plugin-import@^2.29.1:
2692
+ version "2.29.1"
2693
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643"
2694
+ integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==
2682
2695
  dependencies:
2683
2696
  array-includes "^3.1.7"
2684
2697
  array.prototype.findlastindex "^1.2.3"
@@ -2696,7 +2709,7 @@ eslint-plugin-import@^2.29.0:
2696
2709
  object.groupby "^1.0.1"
2697
2710
  object.values "^1.1.7"
2698
2711
  semver "^6.3.1"
2699
- tsconfig-paths "^3.14.2"
2712
+ tsconfig-paths "^3.15.0"
2700
2713
 
2701
2714
  eslint-plugin-mocha@^10.1.0, eslint-plugin-mocha@^10.2.0:
2702
2715
  version "10.2.0"
@@ -2718,12 +2731,12 @@ eslint-plugin-node@^11.1.0:
2718
2731
  resolve "^1.10.1"
2719
2732
  semver "^6.1.0"
2720
2733
 
2721
- eslint-plugin-perfectionist@^2.1.0, eslint-plugin-perfectionist@^2.2.0:
2722
- version "2.2.0"
2723
- resolved "https://registry.yarnpkg.com/eslint-plugin-perfectionist/-/eslint-plugin-perfectionist-2.2.0.tgz#a1b1f1407ce9bc20a4f0e2b8113fb84e5b9dfb9f"
2724
- integrity sha512-/nG2Uurd6AY7CI6zlgjHPOoiPY8B7EYMUWdNb5w+EzyauYiQjjD5lQwAI1FlkBbCCFFZw/CdZIPQhXumYoiyaw==
2734
+ eslint-plugin-perfectionist@^2.1.0, eslint-plugin-perfectionist@^2.5.0:
2735
+ version "2.5.0"
2736
+ resolved "https://registry.yarnpkg.com/eslint-plugin-perfectionist/-/eslint-plugin-perfectionist-2.5.0.tgz#f7f83733e18d1b26694c4aab1b986eac836773a7"
2737
+ integrity sha512-F6XXcq4mKKUe/SREoMGQqzgw6cgCgf3pFzkFfQVIGtqD1yXVpQjnhTepzhBeZfxZwgMzR9HO4yH4CUhIQ2WBcQ==
2725
2738
  dependencies:
2726
- "@typescript-eslint/utils" "^6.7.5"
2739
+ "@typescript-eslint/utils" "^6.13.0"
2727
2740
  minimatch "^9.0.3"
2728
2741
  natural-compare-lite "^1.4.0"
2729
2742
 
@@ -2785,15 +2798,15 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4
2785
2798
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
2786
2799
  integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
2787
2800
 
2788
- eslint@^8.53.0:
2789
- version "8.53.0"
2790
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.53.0.tgz#14f2c8244298fcae1f46945459577413ba2697ce"
2791
- integrity sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==
2801
+ eslint@^8.56.0:
2802
+ version "8.56.0"
2803
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15"
2804
+ integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==
2792
2805
  dependencies:
2793
2806
  "@eslint-community/eslint-utils" "^4.2.0"
2794
2807
  "@eslint-community/regexpp" "^4.6.1"
2795
- "@eslint/eslintrc" "^2.1.3"
2796
- "@eslint/js" "8.53.0"
2808
+ "@eslint/eslintrc" "^2.1.4"
2809
+ "@eslint/js" "8.56.0"
2797
2810
  "@humanwhocodes/config-array" "^0.11.13"
2798
2811
  "@humanwhocodes/module-importer" "^1.0.1"
2799
2812
  "@nodelib/fs.walk" "^1.2.8"
@@ -2926,10 +2939,10 @@ external-editor@^3.0.3:
2926
2939
  iconv-lite "^0.4.24"
2927
2940
  tmp "^0.0.33"
2928
2941
 
2929
- fancy-test@^3.0.1:
2930
- version "3.0.1"
2931
- resolved "https://registry.yarnpkg.com/fancy-test/-/fancy-test-3.0.1.tgz#8b19ed4ccc8b0625475eabf36fd743e1d0168abb"
2932
- integrity sha512-Ke1IFOGEBxP2dNg0X7ZYPUSwKSRr5GNn3xM/2DpHkP86riF3MFDpesXJuD1TGm7gcfwBtYpuSzuw3m704bThVg==
2942
+ fancy-test@^3.0.7:
2943
+ version "3.0.8"
2944
+ resolved "https://registry.yarnpkg.com/fancy-test/-/fancy-test-3.0.8.tgz#ca3919ebb07c1c0e5fb8e8953e02e2ed48600ef8"
2945
+ integrity sha512-vHkT59Kf0Byiqzwc2My1fD9VDYsAPkT+jVqdMqqtwtdLwz19x+hHI2oAxNwfyfEDSK+VrLB4+B96sZbOLVEHdA==
2933
2946
  dependencies:
2934
2947
  "@types/chai" "*"
2935
2948
  "@types/lodash" "*"
@@ -2937,8 +2950,8 @@ fancy-test@^3.0.1:
2937
2950
  "@types/sinon" "*"
2938
2951
  lodash "^4.17.13"
2939
2952
  mock-stdin "^1.0.0"
2940
- nock "^13.3.3"
2941
- sinon "^16.0.0"
2953
+ nock "^13.4.0"
2954
+ sinon "^16.1.3"
2942
2955
  stdout-stderr "^0.1.9"
2943
2956
 
2944
2957
  fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
@@ -3766,6 +3779,11 @@ is-arrayish@^0.2.1:
3766
3779
  resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
3767
3780
  integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
3768
3781
 
3782
+ is-arrayish@^0.3.1:
3783
+ version "0.3.2"
3784
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
3785
+ integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==
3786
+
3769
3787
  is-bigint@^1.0.1:
3770
3788
  version "1.0.4"
3771
3789
  resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
@@ -4676,6 +4694,13 @@ minimatch@5.0.1:
4676
4694
  dependencies:
4677
4695
  brace-expansion "^2.0.1"
4678
4696
 
4697
+ minimatch@9.0.3, minimatch@^9.0.3:
4698
+ version "9.0.3"
4699
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
4700
+ integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
4701
+ dependencies:
4702
+ brace-expansion "^2.0.1"
4703
+
4679
4704
  minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.2:
4680
4705
  version "3.1.2"
4681
4706
  resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
@@ -4690,13 +4715,6 @@ minimatch@^7.2.0:
4690
4715
  dependencies:
4691
4716
  brace-expansion "^2.0.1"
4692
4717
 
4693
- minimatch@^9.0.3:
4694
- version "9.0.3"
4695
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
4696
- integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
4697
- dependencies:
4698
- brace-expansion "^2.0.1"
4699
-
4700
4718
  minimist-options@4.1.0:
4701
4719
  version "4.1.0"
4702
4720
  resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619"
@@ -4899,10 +4917,10 @@ no-case@^3.0.4:
4899
4917
  lower-case "^2.0.2"
4900
4918
  tslib "^2.0.3"
4901
4919
 
4902
- nock@*, nock@^13.3.3, nock@^13.3.6:
4903
- version "13.3.6"
4904
- resolved "https://registry.yarnpkg.com/nock/-/nock-13.3.6.tgz#b279968ec8d076c2393810a6c9bf2d4d5b3a1071"
4905
- integrity sha512-lT6YuktKroUFM+27mubf2uqQZVy2Jf+pfGzuh9N6VwdHlFoZqvi4zyxFTVR1w/ChPqGY6yxGehHp6C3wqCASCw==
4920
+ nock@*, nock@^13.4.0:
4921
+ version "13.4.0"
4922
+ resolved "https://registry.yarnpkg.com/nock/-/nock-13.4.0.tgz#60aa3f7a4afa9c12052e74d8fb7550f682ef0115"
4923
+ integrity sha512-W8NVHjO/LCTNA64yxAPHV/K47LpGYcVzgKd3Q0n6owhwvD0Dgoterc25R4rnZbckJEb6Loxz1f5QMuJpJnbSyQ==
4906
4924
  dependencies:
4907
4925
  debug "^4.1.0"
4908
4926
  json-stringify-safe "^5.0.1"
@@ -5172,10 +5190,10 @@ object.values@^1.1.7:
5172
5190
  define-properties "^1.2.0"
5173
5191
  es-abstract "^1.22.1"
5174
5192
 
5175
- oclif@^4.0.3:
5176
- version "4.0.3"
5177
- resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.0.3.tgz#2ff8fab10c29b2cd0bbf8e9c87640a64151b65ff"
5178
- integrity sha512-Bq7t1bJvAKYwW3DKQIzok3jkXv7yUIMneoSec1qUr9wfSqzRTZQB0UUDovwlT/L+3TBMVoRyw1WeX+YDvfRJNA==
5193
+ oclif@^4.1.0:
5194
+ version "4.1.0"
5195
+ resolved "https://registry.yarnpkg.com/oclif/-/oclif-4.1.0.tgz#486004caf6da8af9f5bdda681a616b5b2c180b45"
5196
+ integrity sha512-4E6z1HOdUYXHu/cbbSv0gnbFJfR9BGc9Oa+e9l8SkRoicGnrEPMpuZyY2vxWPGwMndN6ijxxuFlVmw1/j+MJpg==
5179
5197
  dependencies:
5180
5198
  "@oclif/core" "^3.0.4"
5181
5199
  "@oclif/plugin-help" "^5.2.14"
@@ -5422,6 +5440,14 @@ password-prompt@^1.1.2:
5422
5440
  ansi-escapes "^3.1.0"
5423
5441
  cross-spawn "^6.0.5"
5424
5442
 
5443
+ password-prompt@^1.1.3:
5444
+ version "1.1.3"
5445
+ resolved "https://registry.yarnpkg.com/password-prompt/-/password-prompt-1.1.3.tgz#05e539f4e7ca4d6c865d479313f10eb9db63ee5f"
5446
+ integrity sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==
5447
+ dependencies:
5448
+ ansi-escapes "^4.3.2"
5449
+ cross-spawn "^7.0.3"
5450
+
5425
5451
  path-case@^3.0.4:
5426
5452
  version "3.0.4"
5427
5453
  resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f"
@@ -5539,10 +5565,10 @@ prelude-ls@^1.2.1:
5539
5565
  resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
5540
5566
  integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
5541
5567
 
5542
- prettier@^3.1.0:
5543
- version "3.1.0"
5544
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.0.tgz#c6d16474a5f764ea1a4a373c593b779697744d5e"
5545
- integrity sha512-TQLvXjq5IAibjh8EpBIkNKxO749UEWABoiIZehEPiY4GNpVdhaFKqSTu+QrlU6D2dPAfubRmtJTi4K4YkQ5eXw==
5568
+ prettier@^3.1.1:
5569
+ version "3.1.1"
5570
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.1.1.tgz#6ba9f23165d690b6cbdaa88cb0807278f7019848"
5571
+ integrity sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==
5546
5572
 
5547
5573
  pretty-bytes@^5.3.0:
5548
5574
  version "5.6.0"
@@ -6083,10 +6109,17 @@ signal-exit@^3.0.7:
6083
6109
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
6084
6110
  integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
6085
6111
 
6086
- sinon@^16.0.0:
6087
- version "16.1.0"
6088
- resolved "https://registry.yarnpkg.com/sinon/-/sinon-16.1.0.tgz#645b836563c9bedb21defdbe48831cb2afb687f2"
6089
- integrity sha512-ZSgzF0vwmoa8pq0GEynqfdnpEDyP1PkYmEChnkjW0Vyh8IDlyFEJ+fkMhCP0il6d5cJjPl2PUsnUSAuP5sttOQ==
6112
+ simple-swizzle@^0.2.2:
6113
+ version "0.2.2"
6114
+ resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
6115
+ integrity sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==
6116
+ dependencies:
6117
+ is-arrayish "^0.3.1"
6118
+
6119
+ sinon@^16.1.3:
6120
+ version "16.1.3"
6121
+ resolved "https://registry.yarnpkg.com/sinon/-/sinon-16.1.3.tgz#b760ddafe785356e2847502657b4a0da5501fba8"
6122
+ integrity sha512-mjnWWeyxcAf9nC0bXcPmiDut+oE8HYridTNzBbF98AYVLmWwGRp2ISEpyhYflG1ifILT+eNn3BmKUJPxjXUPlA==
6090
6123
  dependencies:
6091
6124
  "@sinonjs/commons" "^3.0.0"
6092
6125
  "@sinonjs/fake-timers" "^10.3.0"
@@ -6494,10 +6527,10 @@ ts-api-utils@^1.0.1:
6494
6527
  resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.0.3.tgz#f12c1c781d04427313dbac808f453f050e54a331"
6495
6528
  integrity sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==
6496
6529
 
6497
- ts-node@^10.8.1, ts-node@^10.9.1:
6498
- version "10.9.1"
6499
- resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.1.tgz#e73de9102958af9e1f0b168a6ff320e25adcff4b"
6500
- integrity sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==
6530
+ ts-node@^10.8.1, ts-node@^10.9.1, ts-node@^10.9.2:
6531
+ version "10.9.2"
6532
+ resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f"
6533
+ integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==
6501
6534
  dependencies:
6502
6535
  "@cspotcode/source-map-support" "^0.8.0"
6503
6536
  "@tsconfig/node10" "^1.0.7"
@@ -6518,10 +6551,10 @@ tsconfck@^3.0.0:
6518
6551
  resolved "https://registry.yarnpkg.com/tsconfck/-/tsconfck-3.0.0.tgz#b469f1ced12973bbec3209a55ed8de3bb04223c9"
6519
6552
  integrity sha512-w3wnsIrJNi7avf4Zb0VjOoodoO0woEqGgZGQm+LHH9przdUI+XDKsWAXwxHA1DaRTjeuZNcregSzr7RaA8zG9A==
6520
6553
 
6521
- tsconfig-paths@^3.14.2:
6522
- version "3.14.2"
6523
- resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088"
6524
- integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==
6554
+ tsconfig-paths@^3.15.0:
6555
+ version "3.15.0"
6556
+ resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
6557
+ integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
6525
6558
  dependencies:
6526
6559
  "@types/json5" "^0.0.29"
6527
6560
  json5 "^1.0.2"
@@ -6633,10 +6666,10 @@ typedarray-to-buffer@^4.0.0:
6633
6666
  resolved "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-4.0.0.tgz#cdd2933c61dd3f5f02eda5d012d441f95bfeb50a"
6634
6667
  integrity sha512-6dOYeZfS3O9RtRD1caom0sMxgK59b27+IwoNy8RDPsmslSGOyU+mpTamlaIW7aNKi90ZQZ9DFaZL3YRoiSCULQ==
6635
6668
 
6636
- "typescript@^4.6.4 || ^5.2.2", typescript@^5.2.2:
6637
- version "5.2.2"
6638
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78"
6639
- integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==
6669
+ "typescript@^4.6.4 || ^5.2.2", typescript@^5.3.3:
6670
+ version "5.3.3"
6671
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37"
6672
+ integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==
6640
6673
 
6641
6674
  unbox-primitive@^1.0.2:
6642
6675
  version "1.0.2"
@@ -12,6 +12,12 @@
12
12
  "allowNo": false,
13
13
  "type": "boolean"
14
14
  },
15
+ "deprecated": {
16
+ "description": "show deprecated commands",
17
+ "name": "deprecated",
18
+ "allowNo": false,
19
+ "type": "boolean"
20
+ },
15
21
  "help": {
16
22
  "char": "h",
17
23
  "description": "Show CLI help.",
@@ -129,5 +135,5 @@
129
135
  ]
130
136
  }
131
137
  },
132
- "version": "3.0.7"
138
+ "version": "3.1.0"
133
139
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@oclif/plugin-commands",
3
3
  "description": "plugin to show the list of all the commands",
4
- "version": "3.0.7",
4
+ "version": "3.1.0",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-commands/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^3.11.0",
8
+ "@oclif/core": "^3.15.0",
9
9
  "lodash.pickby": "^4.6.0",
10
10
  "lodash.sortby": "^4.7.0",
11
11
  "lodash.template": "^4.5.0",
@@ -15,32 +15,32 @@
15
15
  "@commitlint/config-conventional": "^17.8.1",
16
16
  "@oclif/plugin-help": "^5.2.20",
17
17
  "@oclif/prettier-config": "^0.2.1",
18
- "@oclif/test": "^3.0.2",
19
- "@types/chai": "^4.3.10",
20
- "@types/lodash.pickby": "^4.6.8",
18
+ "@oclif/test": "^3.1.7",
19
+ "@types/chai": "^4.3.11",
20
+ "@types/lodash.pickby": "^4.6.9",
21
21
  "@types/lodash.sortby": "^4.7.9",
22
22
  "@types/lodash.template": "^4.5.3",
23
23
  "@types/lodash.uniqby": "^4.7.9",
24
- "@types/mocha": "^10.0.4",
24
+ "@types/mocha": "^10.0.6",
25
25
  "@types/nock": "^11.1.0",
26
26
  "@types/node": "^18",
27
27
  "chai": "^4.3.10",
28
28
  "commitlint": "^17.8.1",
29
- "eslint": "^8.53.0",
29
+ "eslint": "^8.56.0",
30
30
  "eslint-config-oclif": "^5.0.0",
31
- "eslint-config-oclif-typescript": "^3.0.13",
32
- "eslint-config-prettier": "^9.0.0",
31
+ "eslint-config-oclif-typescript": "^3.0.31",
32
+ "eslint-config-prettier": "^9.1.0",
33
33
  "globby": "^11",
34
34
  "husky": "^8.0.3",
35
35
  "lint-staged": "^14.0.1",
36
36
  "mocha": "^10.2.0",
37
- "nock": "^13.3.6",
37
+ "nock": "^13.4.0",
38
38
  "nyc": "^15.1.0",
39
- "oclif": "^4.0.3",
40
- "prettier": "^3.1.0",
39
+ "oclif": "^4.1.0",
40
+ "prettier": "^3.1.1",
41
41
  "shx": "^0.3.3",
42
- "ts-node": "^10.9.1",
43
- "typescript": "^5.2.2"
42
+ "ts-node": "^10.9.2",
43
+ "typescript": "^5.3.3"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=18.0.0"