plugins icon indicating copy to clipboard operation
plugins copied to clipboard

fix(babel): Update Rollup dependency

Open ESnark opened this issue 1 year ago • 2 comments

Rollup Plugin Name: babel

This PR contains:

  • [ ] bugfix
  • [ ] feature
  • [ ] refactor
  • [ ] documentation
  • [x] other

Are tests included?

  • [ ] yes (bugfixes and features will not be merged without tests)
  • [x] no

Breaking Changes?

  • [ ] yes (breaking changes will not be merged unless absolutely necessary)
  • [x] no

If yes, then include "BREAKING CHANGES:" in the first commit message body, followed by a description of what is breaking.

List any relevant issue numbers:

Description

@rollup/plugin-babel@^6.0.4 peer depends on rollup@^4.0.0 but @rollup/[email protected] doesn't. Because @rollup/plugin-babel includes @rollup/pluginutils, it interteres with upgrading rollup.

This PR resolves a peer-requirements issue for projects using @rollup/plugin-babel.

ESnark avatar Jun 06 '24 16:06 ESnark

This should be OK but to be fair - this is not a fixed range so ur package manager should already be able to install that new version of the utils package. You might have to force an update of the transitive dependency somehow though.

Andarist avatar Jun 06 '24 18:06 Andarist

This should be OK but to be fair - this is not a fixed range so ur package manager should already be able to install that new version of the utils package. You might have to force an update of the transitive dependency somehow though.

I found out ur right, my yarn package manager handle this well and there is no problem (still, I don't understand why yarn complains about it)

ESnark avatar Jun 09 '24 16:06 ESnark