From 904c8422cacd80dde9134cbcca63bfb970482c22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Apr 2024 08:45:35 +0000 Subject: [PATCH 1/2] chore(dev-deps): bump eslint-config-oclif-typescript from 3.1.4 to 3.1.5 Bumps [eslint-config-oclif-typescript](https://github.com/oclif/eslint-config-oclif-typescript) from 3.1.4 to 3.1.5. - [Release notes](https://github.com/oclif/eslint-config-oclif-typescript/releases) - [Changelog](https://github.com/oclif/eslint-config-oclif-typescript/blob/main/CHANGELOG.md) - [Commits](https://github.com/oclif/eslint-config-oclif-typescript/compare/3.1.4...3.1.5) --- updated-dependencies: - dependency-name: eslint-config-oclif-typescript dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- yarn.lock | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/yarn.lock b/yarn.lock index 4f74a9e..964fa94 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3090,18 +3090,18 @@ escape-string-regexp@^1.0.5: integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== eslint-config-oclif-typescript@^3: - version "3.1.4" - resolved "https://registry.yarnpkg.com/eslint-config-oclif-typescript/-/eslint-config-oclif-typescript-3.1.4.tgz#2adb5702ce78487bf3481dbf9dd99c59226d35a9" - integrity sha512-sqqAQEmw++8x5b1OOzly11s6s8nlHiH0mYGgTp5kDpzXztVsqUAvK1eQID7ZEEe5jYAd42MMv4T4LIGoUVF//g== + version "3.1.5" + resolved "https://registry.yarnpkg.com/eslint-config-oclif-typescript/-/eslint-config-oclif-typescript-3.1.5.tgz#1d3ecc7fda5d7e8b12b9c9d128d170f3082590c0" + integrity sha512-bw6HYbv5UQcfK5knAPemViB+CpbxmAOsnaxtvFAEeOvQM61eVaNKtPyCj1DRgUOBUN7knJ0NBXOqUny+0nwSkQ== dependencies: "@typescript-eslint/eslint-plugin" "^6.21.0" "@typescript-eslint/parser" "^6.21.0" eslint-config-xo-space "^0.35.0" eslint-import-resolver-typescript "^3.6.1" eslint-plugin-import "^2.29.1" - eslint-plugin-mocha "^10.4.1" + eslint-plugin-mocha "^10.4.2" eslint-plugin-n "^15" - eslint-plugin-perfectionist "^2.8.0" + eslint-plugin-perfectionist "^2.9.0" eslint-config-oclif@^5: version "5.1.2" @@ -3192,7 +3192,7 @@ eslint-plugin-import@^2.29.1: semver "^6.3.1" tsconfig-paths "^3.15.0" -eslint-plugin-mocha@^10.4.1, eslint-plugin-mocha@^10.4.2: +eslint-plugin-mocha@^10.4.2: version "10.4.3" resolved "https://registry.yarnpkg.com/eslint-plugin-mocha/-/eslint-plugin-mocha-10.4.3.tgz#bf641379d9f1c7d6a84646a3fc1a0baa50da8bfd" integrity sha512-emc4TVjq5Ht0/upR+psftuz6IBG5q279p+1dSRDeHf+NS9aaerBi3lXKo1SEzwC29hFIW21gO89CEWSvRsi8IQ== @@ -3215,10 +3215,10 @@ eslint-plugin-n@^15, eslint-plugin-n@^15.1.0: resolve "^1.22.1" semver "^7.3.8" -eslint-plugin-perfectionist@^2.8.0: - version "2.8.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-perfectionist/-/eslint-plugin-perfectionist-2.8.0.tgz#4bcca444dae8144e4d8d7711907116c9f98c6bdc" - integrity sha512-XBjQ4ctU1rOzQ4bFJoUowe8XdsIIz42JqNrouFlae1TO78HjoyYBaRP8+gAHDDQCSdHY10pbChyzlJeBA6D51w== +eslint-plugin-perfectionist@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-perfectionist/-/eslint-plugin-perfectionist-2.9.0.tgz#f0f48ae37734d0c85f25f2ff117e548c89a30034" + integrity sha512-ipFtDrqtF99qVVo+FE1fo6aHyLLp7hg6PNGfzY5KxQjcl0XCbyEFvjtR1NfkHDTN9rdFeEDxg59LLOv3VOAHAw== dependencies: "@typescript-eslint/utils" "^6.13.0" minimatch "^9.0.3" From 351f7634e42d4f0f29f108675483ebed764d35d0 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Mon, 22 Apr 2024 08:45:33 -0600 Subject: [PATCH 2/2] chore: satisfy linter --- src/commands/version.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/version.ts b/src/commands/version.ts index 7902696..9b9e0c1 100644 --- a/src/commands/version.ts +++ b/src/commands/version.ts @@ -1,9 +1,9 @@ import {Command, Flags, Interfaces} from '@oclif/core' import {EOL} from 'node:os' -export type VersionDetail = Omit & { +export type VersionDetail = { pluginVersions?: string[] -} +} & Omit export default class Version extends Command { static enableJsonFlag = true