-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
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
Roadmap to v1.0.0 #449
Comments
I just tried out the alpha in nuxt-i18n locally, it kept hanging on https://github.com/unjs/mkdist/blob/main/src/make.ts#L56 so I couldn't build. In the middle of some refactors, so no reproduction for now. The freezing/hanging reminded me of nuxt/nuxt#30137 (comment) and it seems to be related since the build succeeds after I replaced the |
I gave it another try and building works fine now (BobbieGoede/i18n#60, https://github.com/BobbieGoede/i18n/actions/runs/12391918988/job/34590001748?pr=60)! I'm guessing the previous issue was resolved by unjs/mkdist#265 🤷 |
Hi, any plan for releasing an alpha version with commit 01b4c9b included? |
~> b0655d3 |
With the release of unbuild v3, the EOL status of Nuxt 2, and looking forward to Nuxt 4, we're going to take the opportunity to release v1 of
@nuxt/module-builder
, with a range of breaking changes.🧪 Testing v1
It is possible to try out the current state of the module builder by installing
@nuxt/module-builder@alpha
. (Expect breaking changes if you are trying out the alpha release.)Upgrade to unbuild v3 (#447)
This major upgrade brings significant changes to the build proces but should be significantly better.
Removal of Node10 module resolution and CommonJS output (#448)
As Nuxt 2 has reached EOL, we no longer generate CJS by default, and we have also removed the 'CJS bridge' feature that polyfilled
__filename
and__dirname
.🚧 Migration Guide
Replacing
__filename
and__dirname
We no longer polyfill these CommonJS variables. Instead, use the
createResolver
utility from@nuxt/kit
:Module Resolution Changes
We no longer officially support Node10 module resolution, meaning you should remove the
types
/type
field from yourpackage.json
. If you need to maintain compatibility with older Node.js versions or systems expecting CommonJS, you can use thetypesVersions
field in yourpackage.json
.This field allows typing subpath exports (like
my-module/utils
) even with oldermoduleResolution
settings. Regardless, we recommend all Nuxt users to useBundler
module resolution.ESM-only Output
We no longer generate CommonJS (
.cjs
) output files by default, as this was primarily needed for Nuxt 2 compatibility. You should:"type": "module"
in your package.json.cjs
files in yourpackage.json
For example:
Configuring unbuild
You can still customize the build process by extending the unbuild configuration in your
buildOptions
.To customize/extend the unbuild configuration you can add a
build.config.ts
in the root of your project:✨ Changelog
compare changes
🚀 Enhancements
🩹 Fixes
📖 Documentation
🏡 Chore
✅ Tests
🤖 CI
❤️ Contributors
The text was updated successfully, but these errors were encountered: