Skip to content

Commit

Permalink
fixup: revert accidental webpack-config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nknapp committed Aug 5, 2023
1 parent c5e5cad commit 6118a3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/webpack-babel-test/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs');
const testFiles = fs.readdirSync('src');
const entryPoints = {};
testFiles
.filter(file => file.match(/-cli.js$/))
.filter(file => file.match(/-test.js$/))
.forEach(file => {
entryPoints[file] = `./src/${file}`;
});
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/webpack-test/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs');
const testFiles = fs.readdirSync('src');
const entryPoints = {};
testFiles
.filter(file => file.match(/-cli.js$/))
.filter(file => file.match(/-test.js$/))
.forEach(file => {
entryPoints[file] = `./src/${file}`;
});
Expand Down

0 comments on commit 6118a3c

Please sign in to comment.