Skip to content

Commit 262b84b

Browse files
committed
Fix integration-tests by not using browserlist from root
The `browserlist`-config was introduced in 6bc73fd. See https://webpack.js.org/configuration/target/#browserslist.
1 parent 6186128 commit 262b84b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tests/integration/webpack-babel-test/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ testFiles
1111
module.exports = {
1212
entry: entryPoints,
1313
mode: 'production',
14+
target: 'web',
1415
output: {
1516
filename: '[name]',
1617
path: __dirname + '/dist',

tests/integration/webpack-test/webpack.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ testFiles
1111
module.exports = {
1212
entry: entryPoints,
1313
mode: 'production',
14+
target: 'web',
1415
output: {
1516
filename: '[name]',
1617
path: __dirname + '/dist',

0 commit comments

Comments
 (0)