1

我正在构建一个组件库,我正在使用 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 的差异,这对我来说很好。

4

1 回答 1

0

事实证明,如果你能忍受一些手工工作并真正理解 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',
        vendor: './src/vendor/vendor.ts'
    },
    output: {
        path: path.resolve(__dirname, 'dist/release'),
        filename: "[name].bundle.js",
        chunkFilename: "[name].bundle.js"
    },
    plugins: [
        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
                    }
                }]
            })}
        ]
    }
}

然后,vendor.ts我只需导入我拥有的任何供应商依赖项:

import 'jquery';
import 'bootstrap-table';

这会产生两个不同的文件,它们都具有 Webpack 引导逻辑。

希望这可以帮助某人。

于 2017-09-30T14:48:34.557 回答