admin管理员组文章数量:1339794
I'm trying to generate a second webpack bundle that's dependent on another bundle. Every page needs bundle-one, but only some pages need bundle-two.
For instance, let's say I have the following entry point scripts (these are trivial examples, just using them to get the point across):
bundle-one.js
import $ from 'jquery';
$(document).data('key', 'value');
bundle-two.js
import $ from 'jquery';
const value = $(document).data('key');
I know that I can use CommonsChunkPlugin to generate a mons.js file containing the WebPack loader and jQuery, but that would require loading both mons.js and bundle-one.js on every page, even when I don't need to load bundle-two.js.
So, basically: is there a way to build bundle-one.js as the "main" JavaScript bundle for all my pages, and then have bundle-two.js setup to load jQuery from bundle-one.js?
I'm trying to generate a second webpack bundle that's dependent on another bundle. Every page needs bundle-one, but only some pages need bundle-two.
For instance, let's say I have the following entry point scripts (these are trivial examples, just using them to get the point across):
bundle-one.js
import $ from 'jquery';
$(document).data('key', 'value');
bundle-two.js
import $ from 'jquery';
const value = $(document).data('key');
I know that I can use CommonsChunkPlugin to generate a mons.js file containing the WebPack loader and jQuery, but that would require loading both mons.js and bundle-one.js on every page, even when I don't need to load bundle-two.js.
So, basically: is there a way to build bundle-one.js as the "main" JavaScript bundle for all my pages, and then have bundle-two.js setup to load jQuery from bundle-one.js?
Share Improve this question asked Sep 15, 2016 at 16:58 dstaleydstaley 1,0521 gold badge14 silver badges36 bronze badges 1- Possible solution here – highFlyingSmurfs Commented Sep 27, 2016 at 4:42
2 Answers
Reset to default 10 +50Option 1
Have two separate Webpack configs, one for each bundle. In your first bundle, expose jQuery
as a global variable when you first require it using the expose-loader:
loaders: [
{ test: require.resolve('jquery'), loader: 'expose?jQuery!expose?$' }
]
Then, in your second bundle config, tell Webpack that jQuery is "external" and shouldn't be bundled in with the rest of the code:
{
externals: {
// require("jquery") is external and available
// on the global var jQuery
"jquery": "jQuery"
}
}
This way the first bundle exposes jQuery as a global variable, then the second bundle looks for that global variable instead of including the source.
Option 2
I'm not sure if this will work, but the CommonsChunkPlugin
documentation says you can specify the name
config option as an existing chunk. You try setting the name to your bundle1 entry point chunk name, and in theory jQuery (and other libs required across all chunks) will be built into bundle 1, and not bundle 2.
You can do this in the following way using the provide plugin -
//webpack.config.js
module.exports = {
entry: './index.js',
output: {
filename: '[name].js'
},
externals: {
jquery: 'jQuery'
},
plugins: [
new webpack.ProvidePlugin({
$: 'jquery',
})
]
};
This can be useful for refactoring legacy code with a lot of different files referencing $.
本文标签:
版权声明:本文标题:javascript - How can I build a webpack bundle that imports a module from another entry point bundle? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743602076a2508741.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论