0
0
Fork 0

Bump webpacker from 4.0.7 to 4.2.0 (#12416)

* Bump webpacker from 4.0.7 to 4.2.0

Bumps [webpacker](https://github.com/rails/webpacker) from 4.0.7 to 4.2.0.
- [Release notes](https://github.com/rails/webpacker/releases)
- [Changelog](https://github.com/rails/webpacker/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rails/webpacker/compare/v4.0.7...v4.2.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Use NODE_ENV=tests instead of test, to work around async modules not having a chunk
This commit is contained in:
dependabot-preview[bot] 2019-11-20 17:56:11 +01:00 committed by Eugen Rochko
parent 8dfc45f757
commit 5605b828e5
4 changed files with 4 additions and 4 deletions

8
config/webpack/tests.js Normal file
View file

@ -0,0 +1,8 @@
// Note: You must restart bin/webpack-dev-server for changes to take effect
const merge = require('webpack-merge');
const sharedConfig = require('./shared.js');
module.exports = merge(sharedConfig, {
mode: 'development',
});