Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
falsandtru committed May 13, 2023
1 parent f5b4275 commit 8fd3c07
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 @@ -75,7 +75,7 @@ module.exports = env => {
return merge(config);
case 'lint':
return merge(config, {
entry: glob.sync('./!(node_modules)/**/*.ts', { absolute: true }),
entry: glob.sync('./!(node_modules)/**/*.ts', { absolute: true }).sort(),
plugins: [
new ESLintPlugin({
extensions: ['ts'],
Expand Down Expand Up @@ -103,7 +103,7 @@ module.exports = env => {
});
case 'dist':
return merge(config, {
entry: glob.sync('./index.ts', { absolute: true }),
entry: glob.sync('./index.ts', { absolute: true }).sort(),
module: {
rules: [
{
Expand Down

0 comments on commit 8fd3c07

Please sign in to comment.