无法读取未定义的属性“编译”

时间:2018-08-26 19:58:39

标签: webpack sass-lint

sass-lint-webpackCreate React App连接到 webpack.config.dev.js 后,我遇到了未捕获的错误

只需将其添加到 webpack.config.dev.js

const SassLintPlugin = require('sass-lint-webpack')

require sass lint plugin

new SassLintPlugin()

connect sass lint plugin to webpack config file

然后运行yarn start之后-我收到错误消息:“无法读取未定义的属性'compilation'”

uncaught error after add sass lint plugin to webpack config file

有什么想法要解决吗?

2 个答案:

答案 0 :(得分:1)

因此,在使用npm安装时,您需要安装指定版本的插件:

npm install --save-dev uglifyjs-webpack-plugin@1

答案 1 :(得分:0)

插件已过时,请使用https://github.com/swordray/sass-lint-webpack,它是新的webpack基础结构的最新版本。