Skip to content

Commit

Permalink
fix: remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptedAlchemy committed Jan 27, 2019
1 parent 4c0c742 commit edf19e1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ class CssModuleFactory {

class MiniCssExtractPlugin {
constructor(options) {
console.log('options', options);
this.options = Object.assign(
{
filename: '[name].css',
Expand Down
7 changes: 6 additions & 1 deletion test/cases/js-hash/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ module.exports = [1, 2].map(n => ({
{
test: /\.css$/,
use: [
Self.loader,
{
loader: Self.loader,
options:{
hot: false
}
},
{
loader: 'css-loader',
options: {
Expand Down

0 comments on commit edf19e1

Please sign in to comment.