Skip to content
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

Merged
merged 6 commits into from
May 27, 2019
Merged

Conversation

pi0
Copy link
Member

@pi0 pi0 commented May 27, 2019

Describe the PR

Fixes #3397

PR checklist

What kind of change does this PR introduce? (check at least one)

  • Bugfix
  • Feature
  • Enhancement
  • ARIA accessibility
  • Documentation update
  • Other (please describe)

Does this PR introduce a breaking change? (check one)

  • No
  • Yes (please describe)

The PR fulfills these requirements:

  • It's submitted to the dev branch, not the master branch
  • When resolving a specific issue, it's referenced in the PR's title (i.e. [...] (fixes #xxx[,#xxx]), where "xxx" is the issue number)
  • It should address only one issue or feature. If adding multiple features or fixing a bug and adding a new feature, break them into separate PRs if at all possible.
  • The title should follow the Conventional Commits naming convention (i.e. 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 the CHANGELOG is generated from these messages.

If new features/enhancement/fixes are added or changed:

  • Includes documentation updates (including updating the component's package.json for slot and event changes)
  • New/updated tests are included and passing (if required)
  • Existing test suites are passing
  • The changes have not impacted the functionality of other components or directives
  • ARIA Accessibility has been taken into consideration (Does it affect screen reader users or keyboard only users? Clickable items should be in the tab index, etc.)

If adding a new feature, or changing the functionality of an existing feature, the PR's
description above includes:

  • A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)

@codecov
Copy link

codecov bot commented May 27, 2019

Codecov Report

Merging #3399 into dev will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           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.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6f0f3fd...9f79df5. Read the comment docs.

pooya parsa added 2 commits May 27, 2019 23:28
@tmorehouse tmorehouse changed the title fix(nuxt): use bundle for development mode fix(nuxt): use bundle for development mode (closes #3397) May 27, 2019
@tmorehouse tmorehouse merged commit f43097e into dev May 27, 2019
@tmorehouse tmorehouse deleted the fix/nuxt branch May 27, 2019 21:02
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.
Copy link
Member Author

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 :)

Copy link
Member

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...

Copy link
Member Author

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

Copy link
Member

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).

Copy link
Member Author

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?

Copy link
Member

@tmorehouse tmorehouse May 27, 2019

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"

Copy link
Member

@tmorehouse tmorehouse May 27, 2019

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.

Copy link
Member

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)

Copy link
Member

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']
  }
}

Copy link
Member Author

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)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

bootstrap-vue/nuxt - SyntaxError Unexpected identifier
2 participants