-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update dependencies and fix import. #16
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, AFAICT. Thanks!
28c024d
to
4ee5cec
Compare
It may have looked good... it was not. It didn't work in top-level apps that use bedrock-webpack due to a UMD bundle override. Removed that and webpack will now use ESM bundle in ESM apps. I don't think there is an issue with doing this in general these days. However, that override caused any |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bummer it had to be breaking, but it's for the best. Thanks!
- Test with Node.js 20.x. - Update action verions.
- Update all dependencies. - Update quasar import to avoid errors due to no default export.
**BREAKING**: Remove `animate.css` `compat` override and use latest style. See the [migration guide](https://animate.style/#migration) for details on updating.
27458a3
to
edaa8c7
Compare
Using ESM vs UMD for Quasar means plugins are no longer used automatically or by default. Applications must be initialized with Quasar plugins it uses. This is currently not automatic and requires top-level application knowledge of all sub-modules in use and what plugins they require. The `quasarOptions` object added here can be used for this purpose and for other Quasar options.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TY
@davidlehn We're running into issues with Quasar |
No description provided.