Skip to content

Commit

Permalink
fix extract-text-plugin arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Jul 24, 2017
1 parent d3b7200 commit 732c85c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/HotTestCases.test.js
Expand Up @@ -53,7 +53,7 @@ describe("HotTestCases", () => {
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
loader: "css-loader"
use: "css-loader"
})
}]
},
Expand Down
2 changes: 1 addition & 1 deletion test/statsCases/separate-css-bundle/webpack.config.js
Expand Up @@ -7,7 +7,7 @@ var moduleConfig = {
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
loader: "css-loader"
use: "css-loader"
})
}
]
Expand Down
Expand Up @@ -6,7 +6,7 @@ module.exports = {
{
test: /\.css$/,
loader: ExtractTextPlugin.extract({
loader: "css-loader"
use: "css-loader"
})
}
]
Expand Down

0 comments on commit 732c85c

Please sign in to comment.