Webpack 3不包括node_modules

时间:2018-01-03 16:06:54

标签: webpack webpack-3

我的webpack.config.js在这里出了什么问题,因为它没有排除node_modules。我在以前版本的网络包中发现了与此问题类似的帖子,但由于语法不同,修补程序不起作用......

wait.Until(ExpectedConditions.ElementIsClickable(By.Id("abc")))

1 个答案:

答案 0 :(得分:1)

您正在使用需要pre值的规则。

您的代码应为:

module.exports = {
    entry: "./foo.js",
    output: {
        filename: "./bar.js"
    },

    module: {
        rules: [
            {
                test: /\.js$/,
                enforce: 'pre', // updated value
                exclude: /node_modules/,
                use: [
                    { loader: 'jshint-loader' }
                ]
            }
        ]
    }
};

来源:https://webpack.js.org/configuration/module/#rule-enforce