-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
fix(nuxt): use bundle for development mode (closes #3397) #3399
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #3399 +/- ##
=======================================
Coverage 99.23% 99.23%
=======================================
Files 219 219
Lines 4186 4186
Branches 1215 1215
=======================================
Hits 4154 4154
Misses 26 26
Partials 6 6 Continue to review full report at Codecov.
|
Do not use the Nuxt module If you want to import individual BootstrapVue components into _specific_ | ||
pages and/or components of your Nuxt app. Instead follow the [module bundlers](#using-module-bundlers) | ||
section above as well as the | ||
[selective import](#selective-component-and-directive-inclusion-in-module-bundlers) sections below. |
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.
Because of the same reason of this change, individual component imports from es/
are not working with nuxt on dev mode :)
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.
Hmmmm.
So we have a new issue now...
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.
Yes. Generally es/
build is broken now. It requires modern tooling for bundling (babel + webpack) and also is pretranspiled to a legacy code :D
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.
We could go back to cjs format for es/
, but that would defeat the purpose of have it for tree-shake-ability (specifically when using named exports, as webpack can't tree shake named exports from csj files - not without a plugin, such as https://github.com/indutny/webpack-common-shake).
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.
I think component/level shaking would be possible CJS format as well. (Have to test more) but for users that really need that tree-shaking why not offering to use src/
directly?
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.
Now, if we had named exports in the main index.js file (for all plugins, components and directives), and users imported from import { BAlert } from 'bootstrap-vue'
, assuming webpack chose "module": "es/index.js"
as the import then it would work. But we would need to have separate entry points when defining our different builds: bootstrap-vue.esm.js
, bootstrap-vue.js
, bootstrap-vue.common.js
, and only have the top-level named exports in *.esm.js.
And revert the es/
directory to the old common JS format. for backwards compatibility (if needed)
Then we could point `"module": "dist/bootstrap-vue.esm.js"
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.
The issue with src/
is that people would need to enable babel to whitelist bootstrap-vue/src
in their builds so that it get's transpiled.
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.
Currently es/
is babel transpiled using @babel/preset-env
with modules: false
set. So it is compatible with supported browsers, but still in the ES6 module format (although it is based on BootstrapVue's browserlistrc file)
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.
@pi0 what if the es/
build files had the extension .mjs
instead of .js
, which would instruct Webpack (v4 at least) to treat the files as ESM modules (so it understands import/export)?
The default extensions for weback are (https://webpack.js.org/configuration/resolve/#resolveextensions):
module.exports = {
//...
resolve: {
extensions: ['.wasm', '.mjs', '.js', '.json']
}
}
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.
This still does not resolve node-externals problem. Probably we need to add extending whitelist support to Nuxt.js. But still es/
files should not be preferred at least for nuxt users. (I'll come back to you on discord :D)
Describe the PR
Fixes #3397
PR checklist
What kind of change does this PR introduce? (check at least one)
Does this PR introduce a breaking change? (check one)
The PR fulfills these requirements:
dev
branch, not themaster
branch[...] (fixes #xxx[,#xxx])
, where "xxx" is the issue number)fix(alert): not alerting during SSR render
,docs(badge): update pill examples, fix typos
,chore: fix typo in README
, etc). This is very important, as theCHANGELOG
is generated from these messages.If new features/enhancement/fixes are added or changed:
package.json
for slot and event changes)If adding a new feature, or changing the functionality of an existing feature, the PR's
description above includes: