我正在构建一个组件库,我正在使用 Webpack 来捆绑它。有些组件只依赖于我编写的 html 模板、css 和 JavaScript,但有些组件需要外部库。
如果您要使用的组件需要它,我想要实现的vendor.js
是可选的。
例如,如果用户只需要一个不依赖于供应商的组件,那么他们使用main.bundle.js
只包含我自己的代码就足够了。
在我的index.js
中,我有以下导入:
import { Header } from './components/header/header.component';
import { Logotype } from './components/logotype/logotype.component';
import { Card } from './components/card/card.component';
import { NavigationCard } from './components/navigation-card/navigation-card.component';
import { AbstractComponent } from './components/base/component.abstract';
import { Configuration } from './system.config';
import 'bootstrap-table';
import './scss/base.scss';
所有这些进口都是我自己的,期待bootstrap-table
.
我已经像这样配置了 Webpack:
const webpack = require('webpack');
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const extractScss = new ExtractTextPlugin({
filename: "[name].bundle.css"
});
module.exports = {
entry: {
main: './src/index.ts'
},
output: {
path: path.resolve(__dirname, 'dist/release'),
filename: "[name].bundle.js",
chunkFilename: "[name].bundle.js"
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor', // Specify the common bundle's name.
minChunks: function (module) {
// Here I would like to tell Webpack to give
// each bundle the ability to run independently
return module.context && module.context.indexOf('node_modules') >= 0;
}
}),
extractScss
],
devtool: "source-map",
resolve: {
// Add `.ts` as a resolvable extension.
extensions: ['.webpack.js', '.web.js', '.ts', '.js', '.ejs']
},
module: {
rules: [
// All files with a '.ts' extension will be handled by 'awesome-typescript-loader'.
{ test: /\.ts?$/, exclude: /node_modules/, loader: "awesome-typescript-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" },
// Allows for templates in separate ejs files
{test: /\.ejs$/, loader: 'ejs-compiled-loader'},
{
test: /\.scss$/,
use: extractScss.extract({
use: [{
loader: 'css-loader', options: {
sourceMap: true
}
}, {
loader: 'sass-loader', options: {
soureMap: true
}
}]
})}
]
}
}
这会产生两个.js
文件和一个.css
. 但是,webpacks 常见的模块加载功能位于 中vendor.js
,如果我不首先包含供应商,这会使我的 main 无法使用,并且并不总是需要它。
总而言之,如果用户只需要页脚(没有外部依赖项),这就足够了:
<script src="main.bundle.js"></script>
如果用户想要使用具有外部依赖关系的表,则需要同时包含以下内容:
<script src="vendor.js"></script>
<script src="main.bundle.js"></script>
现在,包括只main.bundle.js
给我这个错误:
Uncaught ReferenceError: webpackJsonp is not defined
.
我知道我可以通过在 Webpack 配置中创建供应商块后添加它来提取所有常见功能:
new webpack.optimize.CommonsChunkPlugin({
name: 'common'
})
但是这种方法仍然需要用户包含两个.js
文件。
我怎样才能实现这一目标?当我不像上面那样提取公共模块时,它似乎只有 2 kb 的差异,这对我来说很好。