在 webpack 中管理 jQuery 插件依赖关系
我在我的应用程序中使用Webpack,其中我创建了两个入口点 - 捆绑.js用于我的所有JavaScript文件/代码,以及供应商.js用于所有库,如jQuery和React。我该怎么做才能使用以jQuery作为其依赖项的插件,并且我希望将它们也放在供应商.js?如果这些插件有多个依赖项怎么办?
目前,我正在尝试在这里使用此jQuery插件 - https://github.com/mbklein/jquery-elastic。Webpack 文档提到提供Plugin 和 import-loader。我使用了 providePlugin,但仍然 jQuery 对象不可用。以下是我的webpack.config.js的样子 -
var webpack = require('webpack');
var bower_dir = __dirname + '/bower_components';
var node_dir = __dirname + '/node_modules';
var lib_dir = __dirname + '/public/js/libs';
var config = {
addVendor: function (name, path) {
this.resolve.alias[name] = path;
this.module.noParse.push(new RegExp(path));
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jquery: "jQuery",
"window.jQuery": "jquery"
}),
new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js', Infinity)
],
entry: {
app: ['./public/js/main.js'],
vendors: ['react','jquery']
},
resolve: {
alias: {
'jquery': node_dir + '/jquery/dist/jquery.js',
'jquery.elastic': lib_dir + '/jquery.elastic.source.js'
}
},
output: {
path: './public/js',
filename: 'bundle.js'
},
module: {
loaders: [
{ test: /\.js$/, loader: 'jsx-loader' },
{ test: /\.jquery.elastic.js$/, loader: 'imports-loader' }
]
}
};
config.addVendor('react', bower_dir + '/react/react.min.js');
config.addVendor('jquery', node_dir + '/jquery/dist/jquery.js');
config.addVendor('jquery.elastic', lib_dir +'/jquery.elastic.source.js');
module.exports = config;
但尽管如此,它仍然会在浏览器控制台中抛出错误:
未捕获的引用错误:未定义 jQuery
同样,当我使用导入加载程序时,它会抛出一个错误,
未定义需求'
在此行中:
var jQuery = require("jquery")
但是,当我不将其添加到供应商.js文件时,我可以使用相同的插件,而是以正常的AMD方式要求它,就像我包含其他JavaScript代码文件一样,例如 -
define(
[
'jquery',
'react',
'../../common-functions',
'../../libs/jquery.elastic.source'
],function($,React,commonFunctions){
$("#myInput").elastic() //It works
});
但这不是我想做的,因为这意味着jquery.elastic.source.js与我的JavaScript代码捆绑在捆绑包中.js,我希望我所有的jQuery插件都在供应商.js捆绑包中。那么,我该如何实现这一目标呢?