Skip to content

Commit f43097e

Browse files
Pooya Parsatmorehouse
Pooya Parsa
authored andcommitted
fix(nuxt): use bundle for development mode (closes #3397) (#3399)
1 parent 6f0f3fd commit f43097e

File tree

5 files changed

+16
-31
lines changed

5 files changed

+16
-31
lines changed

.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ dist/
33
docs-dist/
44
es/
55
node_modules/
6-
nuxt/plugin.template.js
6+
nuxt/plugin.*.js

docs/markdown/intro/README.md

+5-19
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,11 @@ Note that when importing individual components, any component aliases will **not
239239
</p>
240240
</div>
241241

242+
Do not use the Nuxt module If you want to import individual BootstrapVue components into _specific_
243+
pages and/or components of your Nuxt app. Instead follow the [module bundlers](#using-module-bundlers)
244+
section above as well as the
245+
[selective import](#selective-component-and-directive-inclusion-in-module-bundlers) sections below.
246+
242247
### Passing custom BootstrapVue config with Nuxt.js
243248

244249
If you need to pass a custom
@@ -256,25 +261,6 @@ module.exports = {
256261
}
257262
```
258263

259-
### Using pretranspiled version of BootstrapVue for Nuxt.js
260-
261-
Nuxt.js module uses the precompiled version of BootstrapVue (`es/`) for faster development builds
262-
and the source (`src/`) of BootstrapVue for higher quality production builds.
263-
264-
You can override this option using `usePretranspiled` option. Setting to `true` uses `es/` instead
265-
of `src/`. By default `usePretranspiled` is enabled in development mode only.
266-
267-
<div class="alert alert-info">
268-
<p class="mb-0">
269-
<b>Note:</b> if you are also importing individual components, directives or plugins
270-
<em>within</em> your Nuxt app as well as via the tree-shaking options above, you will want to
271-
set the <code>usePretranspiled</code> option to match the directory you are importing from
272-
(i.e. use <code>true</code> if importing from <code>bootstrap-vue/es</code> or
273-
<code>false</code> if importing from <code>bootstrap-vue/src</code>). Otherwise, you may end
274-
up with a larger bundle size due to code duplication.
275-
</p>
276-
</div>
277-
278264
## Vue CLI 2
279265

280266
<span class="badge badge-warning small">DEPRECATED</span> Use [Vue CLI 3](#vue-cli-3) instead.

nuxt/index.js

+2-7
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,7 @@ module.exports = function nuxtBootstrapVue(moduleOptions = {}) {
4949
// Transpile src/
5050
this.options.build.transpile.push('bootstrap-vue/src')
5151

52-
// Use es/ or src/
53-
const usePretranspiled = pickFirst(options.usePretranspiled, this.options.dev)
54-
55-
const templateOptions = {
56-
dist: usePretranspiled ? 'es' : 'src'
57-
}
52+
const templateOptions = {}
5853

5954
// Specific component and/or directive plugins
6055
for (const type of ['componentPlugins', 'directivePlugins']) {
@@ -88,7 +83,7 @@ module.exports = function nuxtBootstrapVue(moduleOptions = {}) {
8883

8984
// Register plugin, passing options to plugin template
9085
this.addPlugin({
91-
src: resolve(__dirname, 'plugin.template.js'),
86+
src: resolve(__dirname, `plugin.${this.options.dev ? 'dev' : 'prod'}.js`),
9287
fileName: 'bootstrap-vue.js',
9388
options: templateOptions
9489
})

nuxt/plugin.dev.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import Vue from 'vue'
2+
import BootstrapVue from 'bootstrap-vue'
3+
4+
Vue.use(BootstrapVue, <%= JSON.stringify(options.config, undefined, 2) %>)

nuxt/plugin.template.js nuxt/plugin.prod.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ import Vue from 'vue';
88
<% if (options.componentPlugins.length || options.components.length) { %>
99
import {
1010
<%= [].concat(options.componentPlugins, options.components).filter(Boolean).join(',\n ') %>
11-
} from 'bootstrap-vue/<%= options.dist %>/components';
11+
} from 'bootstrap-vue/src/components';
1212
<% } %>
1313
<% if (options.directivePlugins.length || options.directives.length) { %>
1414
import {
1515
<%= [].concat(options.directivePlugins, options.directives).filter(Boolean).join(',\n ') %>
16-
} from 'bootstrap-vue/<%= options.dist %>/directives';
16+
} from 'bootstrap-vue/src/directives';
1717
<% } %>
1818

1919
<% if (options.config) { %>
20-
import BVConfigPlugin from 'bootstrap-vue/<%= options.dist %>/bv-config';
20+
import BVConfigPlugin from 'bootstrap-vue/src/bv-config';
2121

2222
Vue.use(BVConfigPlugin, <%= JSON.stringify(options.config, undefined, 2) %>)'
2323
<% } %>
@@ -33,7 +33,7 @@ options.directives.reduce((acc, d) => (acc += `Vue.directive('${d.replace(/^VB/,
3333
%>
3434

3535
<% } else { %>
36-
import BootstrapVue from 'bootstrap-vue/<%= options.dist %>';
36+
import BootstrapVue from 'bootstrap-vue/src';
3737

3838
Vue.use(BootstrapVue, <%= JSON.stringify(options.config || {}, undefined, 2) %>);
3939
<% } %>

0 commit comments

Comments
 (0)