meta rollupVersion updated to from 2.70 to 2.78#246
Conversation
|
Thanks for looking into this. What's the story with the |
source-map-fast
Hello! I faced with a trouble in an attempt to get to work together The trouble was - as I figured out - in 255 line of The To avoid the problem I have forked nollup repository and tried to update function getURLType(url) {
if (url[0] === "/") {
if (url[1] === "/") return "scheme-relative";
return "path-absolute";
}
return ABSOLUTE_SCHEME.test(url) ? "absolute" : "path-relative";
}Above, the argument I sent pull request three months ago, but it seems the problem still exists. By the way I tried the same configuration with rollup and the error didn't throw - I don't aware why so. But nevertheless, I am inclined to that the problem is not problem of nollup. I think it is a problem of And I don't know if this will be useful for nollup as a project, but at least you will be aware that cases like this are possible. 2.70 -> 2.78This fix I implemented with a goal of compatibility with latest versions of PS:Thank you for your project. You did a great job. I hope it will be alive, despite other popular projects. |


That's a widespread problem with compability nollup and actual versions of official rollup plugin (@rollup/plugin-node-resolve, @rollup/plugin-commonjs etc), for example with node-resolve v 15.2.3:
Most of them require at least 2.78.0 rollup version. I figered out that to solve this problem, it is quite to update version
rollupVersionwithinlib/impl/PluginMeta.jsfile. After the fix nollup continues to interact perfectly with the newest at the moment versions of the plugins