Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed Apr 24, 2023
1 parent 99b877c commit 640c189
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = env => {
resolve: {
extensions: ['.ts', '.js'],
},
entry: glob.sync('./{src,test}/**/*.ts', { absolute: true }),
entry: glob.sync('./{src,test}/**/*.ts', { absolute: true }).sort(),
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'dist'),
Expand Down Expand Up @@ -84,7 +84,7 @@ module.exports = env => {
});
case 'bench':
return merge(config, {
entry: glob.sync('./benchmark/**/*.ts', { absolute: true }),
entry: glob.sync('./benchmark/**/*.ts', { absolute: true }).sort(),
module: {
rules: [
{
Expand Down

0 comments on commit 640c189

Please sign in to comment.