Skip to content

Commit

Permalink
remove workaround resolutions
Browse files Browse the repository at this point in the history
  • Loading branch information
yannbf committed Nov 28, 2024
1 parent 9c90a52 commit c2470b0
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions scripts/utils/yarn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,9 @@ export const addWorkaroundResolutions = async ({ cwd, dryRun }: YarnOptions) =>
const packageJson = await readJSON(packageJsonPath);
packageJson.resolutions = {
...packageJson.resolutions,
// Due to our support of older vite versions
'@vitejs/plugin-react': '4.2.0',
'@vitejs/plugin-vue': '4.5.0',
'@testing-library/dom': '^9.3.4',
'@testing-library/jest-dom': '^6.5.0',
'@testing-library/user-event': '^14.5.2',
// TODO: Remove as soon as @storybook/csf@0.1.10 is released
'@storybook/csf': '0.1.10--canary.d841bb4.0',
};
await writeJSON(packageJsonPath, packageJson, { spaces: 2 });
};
Expand Down

0 comments on commit c2470b0

Please sign in to comment.