Skip to content

Commit

Permalink
lint and prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rdingwell committed Nov 29, 2023
1 parent fe0af61 commit 3c8081e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Production
build

# Dependencies
node_modules
node_modules
build.js
config-overrides.js
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ build

# Dependencies
node_modules
build.js

# This gets modified via `npm install`
package-lock.json
4 changes: 2 additions & 2 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const config = defaults.__get__('config');
// Consolidate chunk files instead
config.optimization.splitChunks = {
cacheGroups: {
default: false,
},
default: false
}
};
// Move runtime into bundle instead of separate file
config.optimization.runtimeChunk = false;
Expand Down
2 changes: 1 addition & 1 deletion config-overrides.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = function override(config, env) {
module.exports = function override(config, _env) {
console.log('override');
let loaders = config.resolve;
loaders.fallback = {
Expand Down

0 comments on commit 3c8081e

Please sign in to comment.