From 2d6a7ab465fdfff1483a23c09858fafa42c93910 Mon Sep 17 00:00:00 2001 From: n0099 Date: Sun, 10 Mar 2024 17:21:05 +0800 Subject: [PATCH] fix(extensions): `eslint-import-resolver-vite@<2.0.1` (#6154) **What's the problem this PR addresses?** https://github.com/pzmosquito/eslint-import-resolver-vite/pull/22 **How did you fix it?** **Checklist** - [x] I have read the [Contributing Guide](https://yarnpkg.com/advanced/contributing). - [x] I have set the packages that need to be released for my changes to be effective. - [x] I will check that all automated PR checks pass before the PR gets reviewed. --------- Co-authored-by: Kristoffer K. --- .yarn/versions/10ef22f9.yml | 24 ++++++++++++++++++++ packages/yarnpkg-extensions/sources/index.ts | 8 +++++++ 2 files changed, 32 insertions(+) create mode 100644 .yarn/versions/10ef22f9.yml diff --git a/.yarn/versions/10ef22f9.yml b/.yarn/versions/10ef22f9.yml new file mode 100644 index 000000000000..fdd7264e3def --- /dev/null +++ b/.yarn/versions/10ef22f9.yml @@ -0,0 +1,24 @@ +releases: + "@yarnpkg/cli": patch + "@yarnpkg/extensions": patch + "@yarnpkg/plugin-compat": patch + +declined: + - "@yarnpkg/plugin-constraints" + - "@yarnpkg/plugin-dlx" + - "@yarnpkg/plugin-essentials" + - "@yarnpkg/plugin-init" + - "@yarnpkg/plugin-interactive-tools" + - "@yarnpkg/plugin-nm" + - "@yarnpkg/plugin-npm-cli" + - "@yarnpkg/plugin-pack" + - "@yarnpkg/plugin-patch" + - "@yarnpkg/plugin-pnp" + - "@yarnpkg/plugin-pnpm" + - "@yarnpkg/plugin-stage" + - "@yarnpkg/plugin-typescript" + - "@yarnpkg/plugin-version" + - "@yarnpkg/plugin-workspace-tools" + - "@yarnpkg/builder" + - "@yarnpkg/core" + - "@yarnpkg/doctor" diff --git a/packages/yarnpkg-extensions/sources/index.ts b/packages/yarnpkg-extensions/sources/index.ts index 82661a0a7d5f..7dbc35f7fea4 100644 --- a/packages/yarnpkg-extensions/sources/index.ts +++ b/packages/yarnpkg-extensions/sources/index.ts @@ -987,4 +987,12 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [ vue: `^3.2.6`, }, }], + // https://github.com/pzmosquito/eslint-import-resolver-vite/pull/22 + // https://github.com/pzmosquito/eslint-import-resolver-vite/commit/97b8111b03d3f8c66506732ac965e906568e8dc1#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519 + [`eslint-import-resolver-vite@<2.0.1`, { + dependencies: { + debug: `^4.3.4`, + resolve: `^1.22.8`, + }, + }], ];