We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
microbundle is not compatible with npm 7 (currently beta) in "normal" mode which respects peer deps.
microbundle
$ npm i microbundle -D npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While resolving: @rollup/[email protected] npm ERR! Found: [email protected] npm ERR! node_modules/rollup npm ERR! rollup@"^1.32.1" from [email protected] npm ERR! node_modules/microbundle npm ERR! dev microbundle@"*" from the root project npm ERR! peer rollup@"^1.20.0||^2.0.0" from @rollup/[email protected] npm ERR! node_modules/@rollup/plugin-alias npm ERR! @rollup/plugin-alias@"^3.1.1" from [email protected] npm ERR! node_modules/microbundle npm ERR! dev microbundle@"*" from the root project npm ERR! 6 more (@rollup/plugin-babel, @rollup/plugin-json, ...) npm ERR! npm ERR! Could not add conflicting dependency: [email protected] npm ERR! node_modules/rollup npm ERR! peer rollup@"^2.3.4" from @rollup/[email protected] npm ERR! node_modules/@rollup/plugin-commonjs npm ERR! @rollup/plugin-commonjs@"^13.0.0" from [email protected] npm ERR! node_modules/microbundle npm ERR! dev microbundle@"*" from the root project npm ERR! npm ERR! Fix the upstream dependency conflict, or retry npm ERR! this command with --legacy-peer-deps npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
This is because microbundle uses rollup 1.32.1. @rollup/plugin-commonjs which microbundle also uses has rollup ^2.3.4 as its peer.
rollup 1.32.1
@rollup/plugin-commonjs
rollup ^2.3.4
The text was updated successfully, but these errors were encountered:
This is fixed in npm 7.0.7, and will be addressed in Microbundle by #738.
Sorry, something went wrong.
No branches or pull requests
microbundle
is not compatible with npm 7 (currently beta) in "normal" mode which respects peer deps.This is because
microbundle
usesrollup 1.32.1
.@rollup/plugin-commonjs
whichmicrobundle
also uses hasrollup ^2.3.4
as its peer.The text was updated successfully, but these errors were encountered: