From 9155359cb633748cd806117717e5709ad2869791 Mon Sep 17 00:00:00 2001 From: Abdullah Alaqeel Date: Tue, 12 Nov 2024 21:42:18 +0300 Subject: [PATCH] fix(extensions): notistack@^3.0.0 (#6593) ## What's the problem this PR addresses? https://github.com/iamhosseindhv/notistack/issues/551 ... ## 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. --- .yarn/versions/37c4f060.yml | 24 ++++++++++++++++++++ packages/yarnpkg-extensions/sources/index.ts | 7 ++++++ 2 files changed, 31 insertions(+) create mode 100644 .yarn/versions/37c4f060.yml diff --git a/.yarn/versions/37c4f060.yml b/.yarn/versions/37c4f060.yml new file mode 100644 index 000000000000..fdd7264e3def --- /dev/null +++ b/.yarn/versions/37c4f060.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 7dbc35f7fea4..33e48c8247f1 100644 --- a/packages/yarnpkg-extensions/sources/index.ts +++ b/packages/yarnpkg-extensions/sources/index.ts @@ -995,4 +995,11 @@ export const packageExtensions: Array<[string, PackageExtensionData]> = [ resolve: `^1.22.8`, }, }], + // https://github.com/iamhosseindhv/notistack/issues/561 + // https://github.com/iamhosseindhv/notistack/pull/562 + [`notistack@^3.0.0`, { + dependencies: { + csstype: `^3.0.10`, + }, + }], ];