簡體   English   中英

使用Grunt和Webpack的結構

[英]Structure for using Grunt and Webpack

我有一個典型的Webpack設置,如下所示:

// webpack.config.js    
var ExtractTextPlugin = require('extract-text-webpack-plugin');

module.exports = {
    entry: "./entry.js",
    output: {
        path: "./build",
        filename: "bundle.js"
    },
    module: {
        loaders: [
                { test: /\.scss$/, loader: ExtractTextPlugin.extract('css!sass')
            }
        ]
    },
    plugins: [
        new ExtractTextPlugin('style.css', {
            allChunks: true
        })
    ]
};

但是我仍然想使用Grunt來運行我的構建,所以我試圖從Grunt任務調用Webpack,因此將所有設置移到Grunt中,如下所示:

// webpack.js - This is a grunt task being loaded into gruntfile.js    
module.exports = {
    entry: "./entry.js",
    output: {
        path: "./build",
        filename: "bundle.js"
    },
    module: {
        loaders: [
                { test: /\.scss$/, loader: ExtractTextPlugin.extract('css!sass') }
        ]
    },
    plugins: [
        new ExtractTextPlugin('style.css', {
            allChunks: true
        })
    ]
    };

現在明顯的問題是,當我運行grunt build時,它無法識別對ExtractTextPlugin的引用。 那么,現在我該在哪里聲明不能使用webpack.config?

如果我要解決所有這些錯誤,請讓我知道,因為我只是在學習Webpack。

您只需要自己要求它:

var ExtractTextPlugin = require("extract-text-webpack-plugin");

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM