@oclif/plugin-update 4.2.10 → 4.2.11

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
@@ -55,7 +55,7 @@ EXAMPLES
55
55
  $ oclif-example update --available
56
56
  ```
57
57
 
58
- _See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.2.10/src/commands/update.ts)_
58
+ _See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.2.11/src/commands/update.ts)_
59
59
  <!-- commandsstop -->
60
60
 
61
61
  # Contributing
package/dist/update.js CHANGED
@@ -338,6 +338,9 @@ const determineChannel = async ({ config, version }) => {
338
338
  const channelPath = join(config.dataDir, 'channel');
339
339
  // eslint-disable-next-line unicorn/no-await-expression-member
340
340
  const channel = existsSync(channelPath) ? (await readFile(channelPath, 'utf8')).trim() : 'stable';
341
+ if (config.pjson.oclif.update?.disableNpmLookup ?? false) {
342
+ return channel;
343
+ }
341
344
  try {
342
345
  const { body } = await HTTP.get(`${config.npmRegistry ?? 'https://registry.npmjs.org'}/${config.pjson.name}`);
343
346
  const tags = body['dist-tags'];
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@oclif/plugin-update",
3
- "version": "4.2.10",
3
+ "version": "4.2.11",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@oclif/plugin-update",
9
- "version": "4.2.10",
9
+ "version": "4.2.11",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
12
  "@inquirer/select": "^2.3.2",
13
- "@oclif/core": "^3.26.5",
13
+ "@oclif/core": "^3.26.6",
14
14
  "chalk": "^5",
15
15
  "debug": "^4.3.1",
16
16
  "filesize": "^6.1.0",
@@ -35,7 +35,7 @@
35
35
  "chai": "^4.4.1",
36
36
  "commitlint": "^18",
37
37
  "eslint": "^8.57.0",
38
- "eslint-config-oclif": "^5.1.3",
38
+ "eslint-config-oclif": "^5.2.0",
39
39
  "eslint-config-oclif-typescript": "^3.1.7",
40
40
  "eslint-config-prettier": "^9.1.0",
41
41
  "got": "^13.0.0",
@@ -3737,39 +3737,704 @@
3737
3737
  "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
3738
3738
  "license": "MIT",
3739
3739
  "dependencies": {
3740
- "@nodelib/fs.stat": "2.0.5",
3741
- "run-parallel": "^1.1.9"
3740
+ "@nodelib/fs.stat": "2.0.5",
3741
+ "run-parallel": "^1.1.9"
3742
+ },
3743
+ "engines": {
3744
+ "node": ">= 8"
3745
+ }
3746
+ },
3747
+ "node_modules/@nodelib/fs.stat": {
3748
+ "version": "2.0.5",
3749
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
3750
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
3751
+ "license": "MIT",
3752
+ "engines": {
3753
+ "node": ">= 8"
3754
+ }
3755
+ },
3756
+ "node_modules/@nodelib/fs.walk": {
3757
+ "version": "1.2.8",
3758
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
3759
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
3760
+ "license": "MIT",
3761
+ "dependencies": {
3762
+ "@nodelib/fs.scandir": "2.1.5",
3763
+ "fastq": "^1.6.0"
3764
+ },
3765
+ "engines": {
3766
+ "node": ">= 8"
3767
+ }
3768
+ },
3769
+ "node_modules/@oclif/core": {
3770
+ "version": "3.26.6",
3771
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.6.tgz",
3772
+ "integrity": "sha512-+FiTw1IPuJTF9tSAlTsY8bGK4sgthehjz7c2SvYdgQncTkxI2xvUch/8QpjNYGLEmUneNygvYMRBax2KJcLccA==",
3773
+ "license": "MIT",
3774
+ "dependencies": {
3775
+ "@types/cli-progress": "^3.11.5",
3776
+ "ansi-escapes": "^4.3.2",
3777
+ "ansi-styles": "^4.3.0",
3778
+ "cardinal": "^2.1.1",
3779
+ "chalk": "^4.1.2",
3780
+ "clean-stack": "^3.0.1",
3781
+ "cli-progress": "^3.12.0",
3782
+ "color": "^4.2.3",
3783
+ "debug": "^4.3.4",
3784
+ "ejs": "^3.1.10",
3785
+ "get-package-type": "^0.1.0",
3786
+ "globby": "^11.1.0",
3787
+ "hyperlinker": "^1.0.0",
3788
+ "indent-string": "^4.0.0",
3789
+ "is-wsl": "^2.2.0",
3790
+ "js-yaml": "^3.14.1",
3791
+ "minimatch": "^9.0.4",
3792
+ "natural-orderby": "^2.0.3",
3793
+ "object-treeify": "^1.1.33",
3794
+ "password-prompt": "^1.1.3",
3795
+ "slice-ansi": "^4.0.0",
3796
+ "string-width": "^4.2.3",
3797
+ "strip-ansi": "^6.0.1",
3798
+ "supports-color": "^8.1.1",
3799
+ "supports-hyperlinks": "^2.2.0",
3800
+ "widest-line": "^3.1.0",
3801
+ "wordwrap": "^1.0.0",
3802
+ "wrap-ansi": "^7.0.0"
3803
+ },
3804
+ "engines": {
3805
+ "node": ">=18.0.0"
3806
+ }
3807
+ },
3808
+ "node_modules/@oclif/core/node_modules/ansi-regex": {
3809
+ "version": "5.0.1",
3810
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
3811
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
3812
+ "license": "MIT",
3813
+ "engines": {
3814
+ "node": ">=8"
3815
+ }
3816
+ },
3817
+ "node_modules/@oclif/core/node_modules/argparse": {
3818
+ "version": "1.0.10",
3819
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
3820
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
3821
+ "license": "MIT",
3822
+ "dependencies": {
3823
+ "sprintf-js": "~1.0.2"
3824
+ }
3825
+ },
3826
+ "node_modules/@oclif/core/node_modules/chalk": {
3827
+ "version": "4.1.2",
3828
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
3829
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
3830
+ "license": "MIT",
3831
+ "dependencies": {
3832
+ "ansi-styles": "^4.1.0",
3833
+ "supports-color": "^7.1.0"
3834
+ },
3835
+ "engines": {
3836
+ "node": ">=10"
3837
+ },
3838
+ "funding": {
3839
+ "url": "https://github.com/chalk/chalk?sponsor=1"
3840
+ }
3841
+ },
3842
+ "node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
3843
+ "version": "7.2.0",
3844
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3845
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3846
+ "license": "MIT",
3847
+ "dependencies": {
3848
+ "has-flag": "^4.0.0"
3849
+ },
3850
+ "engines": {
3851
+ "node": ">=8"
3852
+ }
3853
+ },
3854
+ "node_modules/@oclif/core/node_modules/js-yaml": {
3855
+ "version": "3.14.1",
3856
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
3857
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
3858
+ "license": "MIT",
3859
+ "dependencies": {
3860
+ "argparse": "^1.0.7",
3861
+ "esprima": "^4.0.0"
3862
+ },
3863
+ "bin": {
3864
+ "js-yaml": "bin/js-yaml.js"
3865
+ }
3866
+ },
3867
+ "node_modules/@oclif/core/node_modules/minimatch": {
3868
+ "version": "9.0.4",
3869
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
3870
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
3871
+ "license": "ISC",
3872
+ "dependencies": {
3873
+ "brace-expansion": "^2.0.1"
3874
+ },
3875
+ "engines": {
3876
+ "node": ">=16 || 14 >=14.17"
3877
+ },
3878
+ "funding": {
3879
+ "url": "https://github.com/sponsors/isaacs"
3880
+ }
3881
+ },
3882
+ "node_modules/@oclif/core/node_modules/strip-ansi": {
3883
+ "version": "6.0.1",
3884
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3885
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3886
+ "license": "MIT",
3887
+ "dependencies": {
3888
+ "ansi-regex": "^5.0.1"
3889
+ },
3890
+ "engines": {
3891
+ "node": ">=8"
3892
+ }
3893
+ },
3894
+ "node_modules/@oclif/core/node_modules/supports-color": {
3895
+ "version": "8.1.1",
3896
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
3897
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
3898
+ "license": "MIT",
3899
+ "dependencies": {
3900
+ "has-flag": "^4.0.0"
3901
+ },
3902
+ "engines": {
3903
+ "node": ">=10"
3904
+ },
3905
+ "funding": {
3906
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
3907
+ }
3908
+ },
3909
+ "node_modules/@oclif/plugin-help": {
3910
+ "version": "6.0.21",
3911
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.21.tgz",
3912
+ "integrity": "sha512-w860r9d456xhw1GPaos9yQF+BZeFY9UKdrINbL3fZFX5ZHhr/zGT4Fep5wUkHogjjnSB8+ZHi3D6j2jScIizUw==",
3913
+ "dev": true,
3914
+ "license": "MIT",
3915
+ "dependencies": {
3916
+ "@oclif/core": "^3.26.2"
3917
+ },
3918
+ "engines": {
3919
+ "node": ">=18.0.0"
3920
+ }
3921
+ },
3922
+ "node_modules/@oclif/plugin-help/node_modules/@oclif/core": {
3923
+ "version": "3.26.5",
3924
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
3925
+ "integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
3926
+ "dev": true,
3927
+ "license": "MIT",
3928
+ "dependencies": {
3929
+ "@types/cli-progress": "^3.11.5",
3930
+ "ansi-escapes": "^4.3.2",
3931
+ "ansi-styles": "^4.3.0",
3932
+ "cardinal": "^2.1.1",
3933
+ "chalk": "^4.1.2",
3934
+ "clean-stack": "^3.0.1",
3935
+ "cli-progress": "^3.12.0",
3936
+ "color": "^4.2.3",
3937
+ "debug": "^4.3.4",
3938
+ "ejs": "^3.1.10",
3939
+ "get-package-type": "^0.1.0",
3940
+ "globby": "^11.1.0",
3941
+ "hyperlinker": "^1.0.0",
3942
+ "indent-string": "^4.0.0",
3943
+ "is-wsl": "^2.2.0",
3944
+ "js-yaml": "^3.14.1",
3945
+ "minimatch": "^9.0.4",
3946
+ "natural-orderby": "^2.0.3",
3947
+ "object-treeify": "^1.1.33",
3948
+ "password-prompt": "^1.1.3",
3949
+ "slice-ansi": "^4.0.0",
3950
+ "string-width": "^4.2.3",
3951
+ "strip-ansi": "^6.0.1",
3952
+ "supports-color": "^8.1.1",
3953
+ "supports-hyperlinks": "^2.2.0",
3954
+ "widest-line": "^3.1.0",
3955
+ "wordwrap": "^1.0.0",
3956
+ "wrap-ansi": "^7.0.0"
3957
+ },
3958
+ "engines": {
3959
+ "node": ">=18.0.0"
3960
+ }
3961
+ },
3962
+ "node_modules/@oclif/plugin-help/node_modules/ansi-regex": {
3963
+ "version": "5.0.1",
3964
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
3965
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
3966
+ "dev": true,
3967
+ "license": "MIT",
3968
+ "engines": {
3969
+ "node": ">=8"
3970
+ }
3971
+ },
3972
+ "node_modules/@oclif/plugin-help/node_modules/argparse": {
3973
+ "version": "1.0.10",
3974
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
3975
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
3976
+ "dev": true,
3977
+ "license": "MIT",
3978
+ "dependencies": {
3979
+ "sprintf-js": "~1.0.2"
3980
+ }
3981
+ },
3982
+ "node_modules/@oclif/plugin-help/node_modules/chalk": {
3983
+ "version": "4.1.2",
3984
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
3985
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
3986
+ "dev": true,
3987
+ "license": "MIT",
3988
+ "dependencies": {
3989
+ "ansi-styles": "^4.1.0",
3990
+ "supports-color": "^7.1.0"
3991
+ },
3992
+ "engines": {
3993
+ "node": ">=10"
3994
+ },
3995
+ "funding": {
3996
+ "url": "https://github.com/chalk/chalk?sponsor=1"
3997
+ }
3998
+ },
3999
+ "node_modules/@oclif/plugin-help/node_modules/chalk/node_modules/supports-color": {
4000
+ "version": "7.2.0",
4001
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4002
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4003
+ "dev": true,
4004
+ "license": "MIT",
4005
+ "dependencies": {
4006
+ "has-flag": "^4.0.0"
4007
+ },
4008
+ "engines": {
4009
+ "node": ">=8"
4010
+ }
4011
+ },
4012
+ "node_modules/@oclif/plugin-help/node_modules/js-yaml": {
4013
+ "version": "3.14.1",
4014
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
4015
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
4016
+ "dev": true,
4017
+ "license": "MIT",
4018
+ "dependencies": {
4019
+ "argparse": "^1.0.7",
4020
+ "esprima": "^4.0.0"
4021
+ },
4022
+ "bin": {
4023
+ "js-yaml": "bin/js-yaml.js"
4024
+ }
4025
+ },
4026
+ "node_modules/@oclif/plugin-help/node_modules/minimatch": {
4027
+ "version": "9.0.4",
4028
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
4029
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
4030
+ "dev": true,
4031
+ "license": "ISC",
4032
+ "dependencies": {
4033
+ "brace-expansion": "^2.0.1"
4034
+ },
4035
+ "engines": {
4036
+ "node": ">=16 || 14 >=14.17"
4037
+ },
4038
+ "funding": {
4039
+ "url": "https://github.com/sponsors/isaacs"
4040
+ }
4041
+ },
4042
+ "node_modules/@oclif/plugin-help/node_modules/strip-ansi": {
4043
+ "version": "6.0.1",
4044
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
4045
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4046
+ "dev": true,
4047
+ "license": "MIT",
4048
+ "dependencies": {
4049
+ "ansi-regex": "^5.0.1"
4050
+ },
4051
+ "engines": {
4052
+ "node": ">=8"
4053
+ }
4054
+ },
4055
+ "node_modules/@oclif/plugin-help/node_modules/supports-color": {
4056
+ "version": "8.1.1",
4057
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
4058
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
4059
+ "dev": true,
4060
+ "license": "MIT",
4061
+ "dependencies": {
4062
+ "has-flag": "^4.0.0"
4063
+ },
4064
+ "engines": {
4065
+ "node": ">=10"
4066
+ },
4067
+ "funding": {
4068
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
4069
+ }
4070
+ },
4071
+ "node_modules/@oclif/plugin-not-found": {
4072
+ "version": "3.0.14",
4073
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.0.14.tgz",
4074
+ "integrity": "sha512-HLz04cmS+5F6Tsx1zQEoYV6wamDC/0cM2NqklPIEg8pq/JHPhktmhpzsGaRyBrtx4Pv+uNCo3s+mrTz2v5v03w==",
4075
+ "dev": true,
4076
+ "license": "MIT",
4077
+ "dependencies": {
4078
+ "@oclif/core": "^3.21.0",
4079
+ "chalk": "^5.3.0",
4080
+ "fast-levenshtein": "^3.0.0"
4081
+ },
4082
+ "engines": {
4083
+ "node": ">=18.0.0"
4084
+ }
4085
+ },
4086
+ "node_modules/@oclif/plugin-not-found/node_modules/@oclif/core": {
4087
+ "version": "3.26.5",
4088
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
4089
+ "integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
4090
+ "dev": true,
4091
+ "license": "MIT",
4092
+ "dependencies": {
4093
+ "@types/cli-progress": "^3.11.5",
4094
+ "ansi-escapes": "^4.3.2",
4095
+ "ansi-styles": "^4.3.0",
4096
+ "cardinal": "^2.1.1",
4097
+ "chalk": "^4.1.2",
4098
+ "clean-stack": "^3.0.1",
4099
+ "cli-progress": "^3.12.0",
4100
+ "color": "^4.2.3",
4101
+ "debug": "^4.3.4",
4102
+ "ejs": "^3.1.10",
4103
+ "get-package-type": "^0.1.0",
4104
+ "globby": "^11.1.0",
4105
+ "hyperlinker": "^1.0.0",
4106
+ "indent-string": "^4.0.0",
4107
+ "is-wsl": "^2.2.0",
4108
+ "js-yaml": "^3.14.1",
4109
+ "minimatch": "^9.0.4",
4110
+ "natural-orderby": "^2.0.3",
4111
+ "object-treeify": "^1.1.33",
4112
+ "password-prompt": "^1.1.3",
4113
+ "slice-ansi": "^4.0.0",
4114
+ "string-width": "^4.2.3",
4115
+ "strip-ansi": "^6.0.1",
4116
+ "supports-color": "^8.1.1",
4117
+ "supports-hyperlinks": "^2.2.0",
4118
+ "widest-line": "^3.1.0",
4119
+ "wordwrap": "^1.0.0",
4120
+ "wrap-ansi": "^7.0.0"
4121
+ },
4122
+ "engines": {
4123
+ "node": ">=18.0.0"
4124
+ }
4125
+ },
4126
+ "node_modules/@oclif/plugin-not-found/node_modules/@oclif/core/node_modules/chalk": {
4127
+ "version": "4.1.2",
4128
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
4129
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
4130
+ "dev": true,
4131
+ "license": "MIT",
4132
+ "dependencies": {
4133
+ "ansi-styles": "^4.1.0",
4134
+ "supports-color": "^7.1.0"
4135
+ },
4136
+ "engines": {
4137
+ "node": ">=10"
4138
+ },
4139
+ "funding": {
4140
+ "url": "https://github.com/chalk/chalk?sponsor=1"
4141
+ }
4142
+ },
4143
+ "node_modules/@oclif/plugin-not-found/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
4144
+ "version": "7.2.0",
4145
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4146
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4147
+ "dev": true,
4148
+ "license": "MIT",
4149
+ "dependencies": {
4150
+ "has-flag": "^4.0.0"
4151
+ },
4152
+ "engines": {
4153
+ "node": ">=8"
4154
+ }
4155
+ },
4156
+ "node_modules/@oclif/plugin-not-found/node_modules/ansi-regex": {
4157
+ "version": "5.0.1",
4158
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
4159
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
4160
+ "dev": true,
4161
+ "license": "MIT",
4162
+ "engines": {
4163
+ "node": ">=8"
4164
+ }
4165
+ },
4166
+ "node_modules/@oclif/plugin-not-found/node_modules/argparse": {
4167
+ "version": "1.0.10",
4168
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
4169
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
4170
+ "dev": true,
4171
+ "license": "MIT",
4172
+ "dependencies": {
4173
+ "sprintf-js": "~1.0.2"
4174
+ }
4175
+ },
4176
+ "node_modules/@oclif/plugin-not-found/node_modules/fast-levenshtein": {
4177
+ "version": "3.0.0",
4178
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz",
4179
+ "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==",
4180
+ "dev": true,
4181
+ "license": "MIT",
4182
+ "dependencies": {
4183
+ "fastest-levenshtein": "^1.0.7"
4184
+ }
4185
+ },
4186
+ "node_modules/@oclif/plugin-not-found/node_modules/js-yaml": {
4187
+ "version": "3.14.1",
4188
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
4189
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
4190
+ "dev": true,
4191
+ "license": "MIT",
4192
+ "dependencies": {
4193
+ "argparse": "^1.0.7",
4194
+ "esprima": "^4.0.0"
4195
+ },
4196
+ "bin": {
4197
+ "js-yaml": "bin/js-yaml.js"
4198
+ }
4199
+ },
4200
+ "node_modules/@oclif/plugin-not-found/node_modules/minimatch": {
4201
+ "version": "9.0.4",
4202
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
4203
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
4204
+ "dev": true,
4205
+ "license": "ISC",
4206
+ "dependencies": {
4207
+ "brace-expansion": "^2.0.1"
4208
+ },
4209
+ "engines": {
4210
+ "node": ">=16 || 14 >=14.17"
4211
+ },
4212
+ "funding": {
4213
+ "url": "https://github.com/sponsors/isaacs"
4214
+ }
4215
+ },
4216
+ "node_modules/@oclif/plugin-not-found/node_modules/strip-ansi": {
4217
+ "version": "6.0.1",
4218
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
4219
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4220
+ "dev": true,
4221
+ "license": "MIT",
4222
+ "dependencies": {
4223
+ "ansi-regex": "^5.0.1"
4224
+ },
4225
+ "engines": {
4226
+ "node": ">=8"
4227
+ }
4228
+ },
4229
+ "node_modules/@oclif/plugin-not-found/node_modules/supports-color": {
4230
+ "version": "8.1.1",
4231
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
4232
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
4233
+ "dev": true,
4234
+ "license": "MIT",
4235
+ "dependencies": {
4236
+ "has-flag": "^4.0.0"
4237
+ },
4238
+ "engines": {
4239
+ "node": ">=10"
4240
+ },
4241
+ "funding": {
4242
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
4243
+ }
4244
+ },
4245
+ "node_modules/@oclif/plugin-warn-if-update-available": {
4246
+ "version": "3.0.15",
4247
+ "resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.15.tgz",
4248
+ "integrity": "sha512-JtPTJFjL6izMCe5dDS2ix2PyWAD2DeJ5Atzd2HHRifbPcmOxaUE62FKTnarIwfPHLMF/nN33liwo9InAdirozg==",
4249
+ "dev": true,
4250
+ "license": "MIT",
4251
+ "dependencies": {
4252
+ "@oclif/core": "^3.26.0",
4253
+ "chalk": "^5.3.0",
4254
+ "debug": "^4.1.0",
4255
+ "http-call": "^5.2.2",
4256
+ "lodash.template": "^4.5.0"
4257
+ },
4258
+ "engines": {
4259
+ "node": ">=18.0.0"
4260
+ }
4261
+ },
4262
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/@oclif/core": {
4263
+ "version": "3.26.5",
4264
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
4265
+ "integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
4266
+ "dev": true,
4267
+ "license": "MIT",
4268
+ "dependencies": {
4269
+ "@types/cli-progress": "^3.11.5",
4270
+ "ansi-escapes": "^4.3.2",
4271
+ "ansi-styles": "^4.3.0",
4272
+ "cardinal": "^2.1.1",
4273
+ "chalk": "^4.1.2",
4274
+ "clean-stack": "^3.0.1",
4275
+ "cli-progress": "^3.12.0",
4276
+ "color": "^4.2.3",
4277
+ "debug": "^4.3.4",
4278
+ "ejs": "^3.1.10",
4279
+ "get-package-type": "^0.1.0",
4280
+ "globby": "^11.1.0",
4281
+ "hyperlinker": "^1.0.0",
4282
+ "indent-string": "^4.0.0",
4283
+ "is-wsl": "^2.2.0",
4284
+ "js-yaml": "^3.14.1",
4285
+ "minimatch": "^9.0.4",
4286
+ "natural-orderby": "^2.0.3",
4287
+ "object-treeify": "^1.1.33",
4288
+ "password-prompt": "^1.1.3",
4289
+ "slice-ansi": "^4.0.0",
4290
+ "string-width": "^4.2.3",
4291
+ "strip-ansi": "^6.0.1",
4292
+ "supports-color": "^8.1.1",
4293
+ "supports-hyperlinks": "^2.2.0",
4294
+ "widest-line": "^3.1.0",
4295
+ "wordwrap": "^1.0.0",
4296
+ "wrap-ansi": "^7.0.0"
4297
+ },
4298
+ "engines": {
4299
+ "node": ">=18.0.0"
4300
+ }
4301
+ },
4302
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/@oclif/core/node_modules/chalk": {
4303
+ "version": "4.1.2",
4304
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
4305
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
4306
+ "dev": true,
4307
+ "license": "MIT",
4308
+ "dependencies": {
4309
+ "ansi-styles": "^4.1.0",
4310
+ "supports-color": "^7.1.0"
4311
+ },
4312
+ "engines": {
4313
+ "node": ">=10"
4314
+ },
4315
+ "funding": {
4316
+ "url": "https://github.com/chalk/chalk?sponsor=1"
4317
+ }
4318
+ },
4319
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
4320
+ "version": "7.2.0",
4321
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4322
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4323
+ "dev": true,
4324
+ "license": "MIT",
4325
+ "dependencies": {
4326
+ "has-flag": "^4.0.0"
4327
+ },
4328
+ "engines": {
4329
+ "node": ">=8"
4330
+ }
4331
+ },
4332
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/ansi-regex": {
4333
+ "version": "5.0.1",
4334
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
4335
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
4336
+ "dev": true,
4337
+ "license": "MIT",
4338
+ "engines": {
4339
+ "node": ">=8"
4340
+ }
4341
+ },
4342
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/argparse": {
4343
+ "version": "1.0.10",
4344
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
4345
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
4346
+ "dev": true,
4347
+ "license": "MIT",
4348
+ "dependencies": {
4349
+ "sprintf-js": "~1.0.2"
4350
+ }
4351
+ },
4352
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/js-yaml": {
4353
+ "version": "3.14.1",
4354
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
4355
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
4356
+ "dev": true,
4357
+ "license": "MIT",
4358
+ "dependencies": {
4359
+ "argparse": "^1.0.7",
4360
+ "esprima": "^4.0.0"
4361
+ },
4362
+ "bin": {
4363
+ "js-yaml": "bin/js-yaml.js"
4364
+ }
4365
+ },
4366
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/minimatch": {
4367
+ "version": "9.0.4",
4368
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
4369
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
4370
+ "dev": true,
4371
+ "license": "ISC",
4372
+ "dependencies": {
4373
+ "brace-expansion": "^2.0.1"
4374
+ },
4375
+ "engines": {
4376
+ "node": ">=16 || 14 >=14.17"
4377
+ },
4378
+ "funding": {
4379
+ "url": "https://github.com/sponsors/isaacs"
4380
+ }
4381
+ },
4382
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/strip-ansi": {
4383
+ "version": "6.0.1",
4384
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
4385
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4386
+ "dev": true,
4387
+ "license": "MIT",
4388
+ "dependencies": {
4389
+ "ansi-regex": "^5.0.1"
3742
4390
  },
3743
4391
  "engines": {
3744
- "node": ">= 8"
4392
+ "node": ">=8"
3745
4393
  }
3746
4394
  },
3747
- "node_modules/@nodelib/fs.stat": {
3748
- "version": "2.0.5",
3749
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
3750
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
4395
+ "node_modules/@oclif/plugin-warn-if-update-available/node_modules/supports-color": {
4396
+ "version": "8.1.1",
4397
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
4398
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
4399
+ "dev": true,
3751
4400
  "license": "MIT",
4401
+ "dependencies": {
4402
+ "has-flag": "^4.0.0"
4403
+ },
3752
4404
  "engines": {
3753
- "node": ">= 8"
4405
+ "node": ">=10"
4406
+ },
4407
+ "funding": {
4408
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
3754
4409
  }
3755
4410
  },
3756
- "node_modules/@nodelib/fs.walk": {
3757
- "version": "1.2.8",
3758
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
3759
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
4411
+ "node_modules/@oclif/prettier-config": {
4412
+ "version": "0.2.1",
4413
+ "resolved": "https://registry.npmjs.org/@oclif/prettier-config/-/prettier-config-0.2.1.tgz",
4414
+ "integrity": "sha512-XB8kwQj8zynXjIIWRm+6gO/r8Qft2xKtwBMSmq1JRqtA6TpwpqECqiu8LosBCyg2JBXuUy2lU23/L98KIR7FrQ==",
4415
+ "dev": true,
4416
+ "license": "MIT"
4417
+ },
4418
+ "node_modules/@oclif/test": {
4419
+ "version": "3.2.12",
4420
+ "resolved": "https://registry.npmjs.org/@oclif/test/-/test-3.2.12.tgz",
4421
+ "integrity": "sha512-6DqfPVnCuUaH4VqwAChTWlNla4uPVx3XP5EaxYLjQrSdAzgPn8TMftURDmcfDobU6qQr97Cywec4szfYg4pS7Q==",
4422
+ "dev": true,
3760
4423
  "license": "MIT",
3761
4424
  "dependencies": {
3762
- "@nodelib/fs.scandir": "2.1.5",
3763
- "fastq": "^1.6.0"
4425
+ "@oclif/core": "^3.26.4",
4426
+ "chai": "^4.4.1",
4427
+ "fancy-test": "^3.0.14"
3764
4428
  },
3765
4429
  "engines": {
3766
- "node": ">= 8"
4430
+ "node": ">=18.0.0"
3767
4431
  }
3768
4432
  },
3769
- "node_modules/@oclif/core": {
4433
+ "node_modules/@oclif/test/node_modules/@oclif/core": {
3770
4434
  "version": "3.26.5",
3771
4435
  "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
3772
4436
  "integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
4437
+ "dev": true,
3773
4438
  "license": "MIT",
3774
4439
  "dependencies": {
3775
4440
  "@types/cli-progress": "^3.11.5",
@@ -3805,28 +4470,31 @@
3805
4470
  "node": ">=18.0.0"
3806
4471
  }
3807
4472
  },
3808
- "node_modules/@oclif/core/node_modules/ansi-regex": {
4473
+ "node_modules/@oclif/test/node_modules/ansi-regex": {
3809
4474
  "version": "5.0.1",
3810
4475
  "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
3811
4476
  "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
4477
+ "dev": true,
3812
4478
  "license": "MIT",
3813
4479
  "engines": {
3814
4480
  "node": ">=8"
3815
4481
  }
3816
4482
  },
3817
- "node_modules/@oclif/core/node_modules/argparse": {
4483
+ "node_modules/@oclif/test/node_modules/argparse": {
3818
4484
  "version": "1.0.10",
3819
4485
  "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
3820
4486
  "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
4487
+ "dev": true,
3821
4488
  "license": "MIT",
3822
4489
  "dependencies": {
3823
4490
  "sprintf-js": "~1.0.2"
3824
4491
  }
3825
4492
  },
3826
- "node_modules/@oclif/core/node_modules/chalk": {
4493
+ "node_modules/@oclif/test/node_modules/chalk": {
3827
4494
  "version": "4.1.2",
3828
4495
  "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
3829
4496
  "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
4497
+ "dev": true,
3830
4498
  "license": "MIT",
3831
4499
  "dependencies": {
3832
4500
  "ansi-styles": "^4.1.0",
@@ -3839,10 +4507,11 @@
3839
4507
  "url": "https://github.com/chalk/chalk?sponsor=1"
3840
4508
  }
3841
4509
  },
3842
- "node_modules/@oclif/core/node_modules/chalk/node_modules/supports-color": {
4510
+ "node_modules/@oclif/test/node_modules/chalk/node_modules/supports-color": {
3843
4511
  "version": "7.2.0",
3844
4512
  "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3845
4513
  "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4514
+ "dev": true,
3846
4515
  "license": "MIT",
3847
4516
  "dependencies": {
3848
4517
  "has-flag": "^4.0.0"
@@ -3851,10 +4520,11 @@
3851
4520
  "node": ">=8"
3852
4521
  }
3853
4522
  },
3854
- "node_modules/@oclif/core/node_modules/js-yaml": {
4523
+ "node_modules/@oclif/test/node_modules/js-yaml": {
3855
4524
  "version": "3.14.1",
3856
4525
  "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
3857
4526
  "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
4527
+ "dev": true,
3858
4528
  "license": "MIT",
3859
4529
  "dependencies": {
3860
4530
  "argparse": "^1.0.7",
@@ -3864,10 +4534,11 @@
3864
4534
  "js-yaml": "bin/js-yaml.js"
3865
4535
  }
3866
4536
  },
3867
- "node_modules/@oclif/core/node_modules/minimatch": {
4537
+ "node_modules/@oclif/test/node_modules/minimatch": {
3868
4538
  "version": "9.0.4",
3869
4539
  "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
3870
4540
  "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
4541
+ "dev": true,
3871
4542
  "license": "ISC",
3872
4543
  "dependencies": {
3873
4544
  "brace-expansion": "^2.0.1"
@@ -3879,10 +4550,11 @@
3879
4550
  "url": "https://github.com/sponsors/isaacs"
3880
4551
  }
3881
4552
  },
3882
- "node_modules/@oclif/core/node_modules/strip-ansi": {
4553
+ "node_modules/@oclif/test/node_modules/strip-ansi": {
3883
4554
  "version": "6.0.1",
3884
4555
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3885
4556
  "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4557
+ "dev": true,
3886
4558
  "license": "MIT",
3887
4559
  "dependencies": {
3888
4560
  "ansi-regex": "^5.0.1"
@@ -3891,10 +4563,11 @@
3891
4563
  "node": ">=8"
3892
4564
  }
3893
4565
  },
3894
- "node_modules/@oclif/core/node_modules/supports-color": {
4566
+ "node_modules/@oclif/test/node_modules/supports-color": {
3895
4567
  "version": "8.1.1",
3896
4568
  "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
3897
4569
  "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
4570
+ "dev": true,
3898
4571
  "license": "MIT",
3899
4572
  "dependencies": {
3900
4573
  "has-flag": "^4.0.0"
@@ -3906,83 +4579,6 @@
3906
4579
  "url": "https://github.com/chalk/supports-color?sponsor=1"
3907
4580
  }
3908
4581
  },
3909
- "node_modules/@oclif/plugin-help": {
3910
- "version": "6.0.21",
3911
- "resolved": "https://registry.npmjs.org/@oclif/plugin-help/-/plugin-help-6.0.21.tgz",
3912
- "integrity": "sha512-w860r9d456xhw1GPaos9yQF+BZeFY9UKdrINbL3fZFX5ZHhr/zGT4Fep5wUkHogjjnSB8+ZHi3D6j2jScIizUw==",
3913
- "dev": true,
3914
- "license": "MIT",
3915
- "dependencies": {
3916
- "@oclif/core": "^3.26.2"
3917
- },
3918
- "engines": {
3919
- "node": ">=18.0.0"
3920
- }
3921
- },
3922
- "node_modules/@oclif/plugin-not-found": {
3923
- "version": "3.0.14",
3924
- "resolved": "https://registry.npmjs.org/@oclif/plugin-not-found/-/plugin-not-found-3.0.14.tgz",
3925
- "integrity": "sha512-HLz04cmS+5F6Tsx1zQEoYV6wamDC/0cM2NqklPIEg8pq/JHPhktmhpzsGaRyBrtx4Pv+uNCo3s+mrTz2v5v03w==",
3926
- "dev": true,
3927
- "license": "MIT",
3928
- "dependencies": {
3929
- "@oclif/core": "^3.21.0",
3930
- "chalk": "^5.3.0",
3931
- "fast-levenshtein": "^3.0.0"
3932
- },
3933
- "engines": {
3934
- "node": ">=18.0.0"
3935
- }
3936
- },
3937
- "node_modules/@oclif/plugin-not-found/node_modules/fast-levenshtein": {
3938
- "version": "3.0.0",
3939
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-3.0.0.tgz",
3940
- "integrity": "sha512-hKKNajm46uNmTlhHSyZkmToAc56uZJwYq7yrciZjqOxnlfQwERDQJmHPUp7m1m9wx8vgOe8IaCKZ5Kv2k1DdCQ==",
3941
- "dev": true,
3942
- "license": "MIT",
3943
- "dependencies": {
3944
- "fastest-levenshtein": "^1.0.7"
3945
- }
3946
- },
3947
- "node_modules/@oclif/plugin-warn-if-update-available": {
3948
- "version": "3.0.15",
3949
- "resolved": "https://registry.npmjs.org/@oclif/plugin-warn-if-update-available/-/plugin-warn-if-update-available-3.0.15.tgz",
3950
- "integrity": "sha512-JtPTJFjL6izMCe5dDS2ix2PyWAD2DeJ5Atzd2HHRifbPcmOxaUE62FKTnarIwfPHLMF/nN33liwo9InAdirozg==",
3951
- "dev": true,
3952
- "license": "MIT",
3953
- "dependencies": {
3954
- "@oclif/core": "^3.26.0",
3955
- "chalk": "^5.3.0",
3956
- "debug": "^4.1.0",
3957
- "http-call": "^5.2.2",
3958
- "lodash.template": "^4.5.0"
3959
- },
3960
- "engines": {
3961
- "node": ">=18.0.0"
3962
- }
3963
- },
3964
- "node_modules/@oclif/prettier-config": {
3965
- "version": "0.2.1",
3966
- "resolved": "https://registry.npmjs.org/@oclif/prettier-config/-/prettier-config-0.2.1.tgz",
3967
- "integrity": "sha512-XB8kwQj8zynXjIIWRm+6gO/r8Qft2xKtwBMSmq1JRqtA6TpwpqECqiu8LosBCyg2JBXuUy2lU23/L98KIR7FrQ==",
3968
- "dev": true,
3969
- "license": "MIT"
3970
- },
3971
- "node_modules/@oclif/test": {
3972
- "version": "3.2.12",
3973
- "resolved": "https://registry.npmjs.org/@oclif/test/-/test-3.2.12.tgz",
3974
- "integrity": "sha512-6DqfPVnCuUaH4VqwAChTWlNla4uPVx3XP5EaxYLjQrSdAzgPn8TMftURDmcfDobU6qQr97Cywec4szfYg4pS7Q==",
3975
- "dev": true,
3976
- "license": "MIT",
3977
- "dependencies": {
3978
- "@oclif/core": "^3.26.4",
3979
- "chai": "^4.4.1",
3980
- "fancy-test": "^3.0.14"
3981
- },
3982
- "engines": {
3983
- "node": ">=18.0.0"
3984
- }
3985
- },
3986
4582
  "node_modules/@sindresorhus/is": {
3987
4583
  "version": "5.6.0",
3988
4584
  "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz",
@@ -6923,9 +7519,9 @@
6923
7519
  }
6924
7520
  },
6925
7521
  "node_modules/eslint-config-oclif": {
6926
- "version": "5.1.3",
6927
- "resolved": "https://registry.npmjs.org/eslint-config-oclif/-/eslint-config-oclif-5.1.3.tgz",
6928
- "integrity": "sha512-Yf4VYDoaebYaBYZdYmEXP0xDIzppMvkG1cPtkum6rFtUhY9qdvsOGS3ijW6Q4ao5ochQLdvTEgXYGPkAQo7Fug==",
7522
+ "version": "5.2.0",
7523
+ "resolved": "https://registry.npmjs.org/eslint-config-oclif/-/eslint-config-oclif-5.2.0.tgz",
7524
+ "integrity": "sha512-fd2rFmm1x5YvTHNklSigbKj8ymo/uAU/PKBic/Yc+9yCRHgOAQos01mBLYVw9oeoyVLx+d79YVidkqgPoyx6RQ==",
6929
7525
  "dev": true,
6930
7526
  "license": "MIT",
6931
7527
  "dependencies": {
@@ -10491,6 +11087,82 @@
10491
11087
  "node": ">=18.0.0"
10492
11088
  }
10493
11089
  },
11090
+ "node_modules/oclif/node_modules/@oclif/core": {
11091
+ "version": "3.26.5",
11092
+ "resolved": "https://registry.npmjs.org/@oclif/core/-/core-3.26.5.tgz",
11093
+ "integrity": "sha512-uRmAujGJjLhhgpLylbiuHuPt9Ec7u6aJ72utuSPNTRw47+W5vbQSGnLGPiil1Mt5YDL+zFOyTVH6Uv3NSP2SaQ==",
11094
+ "dev": true,
11095
+ "license": "MIT",
11096
+ "dependencies": {
11097
+ "@types/cli-progress": "^3.11.5",
11098
+ "ansi-escapes": "^4.3.2",
11099
+ "ansi-styles": "^4.3.0",
11100
+ "cardinal": "^2.1.1",
11101
+ "chalk": "^4.1.2",
11102
+ "clean-stack": "^3.0.1",
11103
+ "cli-progress": "^3.12.0",
11104
+ "color": "^4.2.3",
11105
+ "debug": "^4.3.4",
11106
+ "ejs": "^3.1.10",
11107
+ "get-package-type": "^0.1.0",
11108
+ "globby": "^11.1.0",
11109
+ "hyperlinker": "^1.0.0",
11110
+ "indent-string": "^4.0.0",
11111
+ "is-wsl": "^2.2.0",
11112
+ "js-yaml": "^3.14.1",
11113
+ "minimatch": "^9.0.4",
11114
+ "natural-orderby": "^2.0.3",
11115
+ "object-treeify": "^1.1.33",
11116
+ "password-prompt": "^1.1.3",
11117
+ "slice-ansi": "^4.0.0",
11118
+ "string-width": "^4.2.3",
11119
+ "strip-ansi": "^6.0.1",
11120
+ "supports-color": "^8.1.1",
11121
+ "supports-hyperlinks": "^2.2.0",
11122
+ "widest-line": "^3.1.0",
11123
+ "wordwrap": "^1.0.0",
11124
+ "wrap-ansi": "^7.0.0"
11125
+ },
11126
+ "engines": {
11127
+ "node": ">=18.0.0"
11128
+ }
11129
+ },
11130
+ "node_modules/oclif/node_modules/@oclif/core/node_modules/supports-color": {
11131
+ "version": "8.1.1",
11132
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
11133
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
11134
+ "dev": true,
11135
+ "license": "MIT",
11136
+ "dependencies": {
11137
+ "has-flag": "^4.0.0"
11138
+ },
11139
+ "engines": {
11140
+ "node": ">=10"
11141
+ },
11142
+ "funding": {
11143
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
11144
+ }
11145
+ },
11146
+ "node_modules/oclif/node_modules/ansi-regex": {
11147
+ "version": "5.0.1",
11148
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
11149
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
11150
+ "dev": true,
11151
+ "license": "MIT",
11152
+ "engines": {
11153
+ "node": ">=8"
11154
+ }
11155
+ },
11156
+ "node_modules/oclif/node_modules/argparse": {
11157
+ "version": "1.0.10",
11158
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
11159
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
11160
+ "dev": true,
11161
+ "license": "MIT",
11162
+ "dependencies": {
11163
+ "sprintf-js": "~1.0.2"
11164
+ }
11165
+ },
10494
11166
  "node_modules/oclif/node_modules/chalk": {
10495
11167
  "version": "4.1.2",
10496
11168
  "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
@@ -10508,6 +11180,49 @@
10508
11180
  "url": "https://github.com/chalk/chalk?sponsor=1"
10509
11181
  }
10510
11182
  },
11183
+ "node_modules/oclif/node_modules/js-yaml": {
11184
+ "version": "3.14.1",
11185
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
11186
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
11187
+ "dev": true,
11188
+ "license": "MIT",
11189
+ "dependencies": {
11190
+ "argparse": "^1.0.7",
11191
+ "esprima": "^4.0.0"
11192
+ },
11193
+ "bin": {
11194
+ "js-yaml": "bin/js-yaml.js"
11195
+ }
11196
+ },
11197
+ "node_modules/oclif/node_modules/minimatch": {
11198
+ "version": "9.0.4",
11199
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
11200
+ "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
11201
+ "dev": true,
11202
+ "license": "ISC",
11203
+ "dependencies": {
11204
+ "brace-expansion": "^2.0.1"
11205
+ },
11206
+ "engines": {
11207
+ "node": ">=16 || 14 >=14.17"
11208
+ },
11209
+ "funding": {
11210
+ "url": "https://github.com/sponsors/isaacs"
11211
+ }
11212
+ },
11213
+ "node_modules/oclif/node_modules/strip-ansi": {
11214
+ "version": "6.0.1",
11215
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
11216
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
11217
+ "dev": true,
11218
+ "license": "MIT",
11219
+ "dependencies": {
11220
+ "ansi-regex": "^5.0.1"
11221
+ },
11222
+ "engines": {
11223
+ "node": ">=8"
11224
+ }
11225
+ },
10511
11226
  "node_modules/once": {
10512
11227
  "version": "1.4.0",
10513
11228
  "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
@@ -88,5 +88,5 @@
88
88
  ]
89
89
  }
90
90
  },
91
- "version": "4.2.10"
91
+ "version": "4.2.11"
92
92
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@oclif/plugin-update",
3
- "version": "4.2.10",
3
+ "version": "4.2.11",
4
4
  "author": "Salesforce",
5
5
  "bugs": "https://github.com/oclif/plugin-update/issues",
6
6
  "dependencies": {
7
7
  "@inquirer/select": "^2.3.2",
8
- "@oclif/core": "^3.26.5",
8
+ "@oclif/core": "^3.26.6",
9
9
  "chalk": "^5",
10
10
  "debug": "^4.3.1",
11
11
  "filesize": "^6.1.0",
@@ -30,7 +30,7 @@
30
30
  "chai": "^4.4.1",
31
31
  "commitlint": "^18",
32
32
  "eslint": "^8.57.0",
33
- "eslint-config-oclif": "^5.1.3",
33
+ "eslint-config-oclif": "^5.2.0",
34
34
  "eslint-config-oclif-typescript": "^3.1.7",
35
35
  "eslint-config-prettier": "^9.1.0",
36
36
  "got": "^13.0.0",