Merge pull request #6151 from webpack/ci/stability

Avoid minimizing target test cases
This commit is contained in:
Tobias Koppers 2017-12-19 08:56:05 +01:00 committed by GitHub
commit 97880f1a30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -2,5 +2,8 @@ module.exports = {
target: "web",
performance: {
hints: false
},
optimization: {
minimize: false
}
};

View File

@ -11,5 +11,8 @@ module.exports = {
node: {
__dirname: false,
__filename: false
},
optimization: {
minimize: false
}
};