As predicted, I am getting errors upgrading this now. I haven’t looked into why, will dig in later ):
Error: next-transpile-modules - an unexpected error happened when trying to resolve “bs-platform”
18:22:06 Error: Can’t resolve ‘bs-platform’ in ‘/vercel/workpath0’
18:22:06 at getPackageRootDirectory (/vercel/workpath0/node_modules/next-transpile-modules/src/next-transpile-modules.js:70:11)
what did you upgrade? don’t forget to clean and build-world whenever messing with npm packages, since npm likes to wipe your compiled ReScript dependency js artifacts.
Besides, upgrading a package, no matter what kind of dependency, by 2 major version just asks for troubles due to breaking changes. In opam those errors are easy to spot ahead of time, but in JS there is no such guarantee.
Confirmed, when I do the following, the build gets passed bs-platform and then trips on reason-react:
cd node_modules/bs-platform && touch index.js && sed -i 's/^{/{ "main": "index.js",/' package.json
Sounds like next-transpile-modules should expose an extra parameter to explicitly provide a directory when the library is out of the user’s control. Alternatively, I could bother each rescript library author to add “main-is”…
I just realized that in order to update to webpack5 in NextJS we have to use the latest next-transpile-modules as mentioned here
When using next-transpile-modules make sure you use the latest version which includes this patch
Some goodies about upgrading webpack are:
Improved Disk Caching: next build is significantly faster on subsequent builds
Improved Fast Refresh: Fast Refresh work is prioritized
Improved Long Term Caching of Assets: Deterministic code output that is less likely to change between builds
Improved Tree Shaking
Support for assets using new URL("file.png", import.meta.url)
Support for web workers using new Worker(new URL("worker.js", import.meta.url))
Support for exports/imports field in package.json
In this GitHub issue I reported that next-transpile-modules need rescript to have an entry point in order to be compatible with next-transpile-modules v5+. But @Hongbo stated that rescript doesn’t have the concept of entry point.
I’m a bit bummed and concerned that this might be the end of the road for a while regarding upgrading to the latest webpack v5 in NextJS.
A solution could be to fork next-transpile-modules and bend it to our needs.
@jorge I got my template working with webpack5 and next-transpile-modules just right now.
Took me a while to understand what’s the issue, but there’s currently two things that need to be fixed:
As you stated correctly, the package.json of bs-platform (and @rescript/react) needs either a main field pointing to a file, or an empty index.js within the root folder, otherwise the webpack resolver will not find the package
There seems to be an issue with the webpack rule in next-transpile-module that causes webpack to not treat the packages within lib/es6/X.js as a esm module (Reference Error: module is not defined). To fix this, I had to adapt the rule on line 224 to the following:
this is great to hear @ryyppy!
for #1 could it point to a readme file? or does it has to be .js?
I think it would be misleading to point to a fake entry file. On the other hand it is important to support webpack 5.
I am honestly not sure why this is needed in the first place. next-transpile-modules uses Webpack’s enhanced-resolve functionality to resolve the package root dir… and for some reason it won’t recognize it if there’s not a main file (which I find surprising).
Not yet because I am not entirely sure if my change would be in the interest of the package maintainer.