我在我的应用程序中使用 Webpack,我在其中创建了两个入口点 - bundle.js 用于我的所有 JavaScript 文件/代码,以及 vendor.js 用于所有库(如 jQuery 和 React)。我该怎么做才能使用以 jQuery 作为依赖项的插件,并且我想在 vendor.js 中也使用它们?如果这些插件有多个依赖项怎么办?
目前我正在尝试在这里使用这个 jQuery 插件 - https://github.com/mbklein/jquery-elastic。Webpack 文档中提到了providePlugin和 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;
但尽管如此,它仍然在浏览器控制台中抛出错误:
未捕获的 ReferenceError:未定义 jQuery
同样,当我使用导入加载器时,它会抛出一个错误,
要求未定义'
在这一行:
var jQuery = require("jquery")
但是,当我不将它添加到我的 vendor.js 文件中,而是以正常的 AMD 方式需要它时,我可以使用相同的插件,就像我如何包含其他 JavaScript 代码文件一样,例如-
define(
[
'jquery',
'react',
'../../common-functions',
'../../libs/jquery.elastic.source'
],function($,React,commonFunctions){
$("#myInput").elastic() //It works
});
但这不是我想要做的,因为这意味着 jquery.elastic.source.js 与我在 bundle.js 中的 JavaScript 代码捆绑在一起,我希望我所有的 jQuery 插件都在 vendor.js 捆绑包中。那么我该如何实现这一目标呢?