Concat并使用Webpack缩小所有较少的文件而不导入它们

时间:2017-06-30 12:26:50

标签: javascript typescript webpack ecmascript-6 less

我有一个大约20个单独的文件的文件夹,我需要通过Webpack连接成一个文件并将其存储在我的/ dist文件夹中。我当前的Webpack配置文件如下:

const path = require('path');
const webpack = require('webpack');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const CheckerPlugin = require('awesome-typescript-loader').CheckerPlugin;
const bundleOutputDir = './wwwroot/dist';


module.exports = (env) => {
    const isDevBuild = !(env && env.prod);
    return [{
        stats: { modules: false },
        entry: { 'main': './ClientApp/boot.ts' },
        resolve: { extensions: ['.js', '.ts'] },
        output: {
            path: path.join(__dirname, bundleOutputDir),
            filename: '[name].js',
            publicPath: '/dist/'
        },
        module: {
            rules: [
                { test: /\.ts$/, include: /ClientApp/, use: 'awesome-typescript-loader?silent=true' },
                { test: /\.html$/, use: 'raw-loader' },
                { test: /\.css$/, use: isDevBuild ? ['style-loader', 'css-loader'] : ExtractTextPlugin.extract({ use: 'css-loader' }) },
                { test: /\.less/, use: ExtractTextPlugin.extract('style-loader', 'css-loader!less-loader') },
                { test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' }
            ]
        },
        plugins: [
            new CheckerPlugin(),
            new webpack.DllReferencePlugin({
                context: __dirname,
                manifest: require('./wwwroot/dist/vendor-manifest.json')
            })
        ].concat(isDevBuild ? [
            // Plugins that apply in development builds only
            new webpack.SourceMapDevToolPlugin({
                filename: '[file].map', // Remove this line if you prefer inline source maps
                moduleFilenameTemplate: path.relative(bundleOutputDir, '[resourcePath]') // Point sourcemap entries to the original file locations on disk
            })
        ] : [
                // Plugins that apply in production builds only
                new webpack.optimize.UglifyJsPlugin(),
                new ExtractTextPlugin('site.less'),
                new ExtractTextPlugin('site.css')
            ])
    }];
};

如果我尝试将每个单个.less文件导入boot.ts条目文件,我会得到一个较少的错误,说明我声明的变量越少,我就不会被识别了,这就是我来到结论我需要预先连接这些文件。我来自gulp背景,所以任何帮助让我开始和运行的人将不胜感激。

如果有另一种方法可以将所有较少的编译成css并正常工作,而不需要concat,那么我可以接受建议。

1 个答案:

答案 0 :(得分:1)

Webpack是一个模块捆绑器,它使用JavaScript(ES6,CommonJS,AMD ..),CSS(@import,url)甚至HTML(通过src属性)的模块语法来构建应用程序的依赖图然后在几个包中序列化它。

在您的情况下,当您导入 *。less 文件时,错误是因为您错过了CSS modules。换句话说,在您使用其他文件中定义的变量的地方,该文件不是 @import -ed。

有了Webpack,我们建议将所有内容模块化,因此我建议添加缺少的CSS模块。当我将项目从Grunt迁移到Webpack时,我遇到了同样的问题。其他临时解决方案是创建一个 index.less 文件,您将在其中@import所有较少的文件(注意:顺序很重要),然后在app的条目文件中导入该文件(ex .boot.ts)。