For security reasons, we had to add some overrides in the root package.json.
These overrides got moved to the pnpm-workspace.yaml file with #8244.
We should check if we still need these overrides and remove them if possible.
How can you check that?
- Remove one specific package override and save the file.
e.g. browserslist: '>04.27.0'
- Run
pnpm i
- Run
pnpm -r why <packagename>
- Check if the package is installed in a version outside of the override boundaries (e.g. older than specified)
if YES: keep override
if NO: override can be removed
For security reasons, we had to add some overrides in the root
package.json.These overrides got moved to the
pnpm-workspace.yamlfile with #8244.We should check if we still need these overrides and remove them if possible.
peerDependencyRulesand clean them up.overridesand clean them up.How can you check that?
e.g.
browserslist: '>04.27.0'pnpm ipnpm -r why <packagename>if YES: keep override
if NO: override can be removed