Skip to content

Commit

Permalink
build(deps-dev): bump webpack-dev-server from 4.15.1 to 5.1.0 (#1375)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump webpack-dev-server from 4.15.1 to 5.1.0

Bumps [webpack-dev-server](https://github.com/webpack/webpack-dev-server) from 4.15.1 to 5.1.0.
- [Release notes](https://github.com/webpack/webpack-dev-server/releases)
- [Changelog](https://github.com/webpack/webpack-dev-server/blob/master/CHANGELOG.md)
- [Commits](webpack/webpack-dev-server@v4.15.1...v5.1.0)

---
updated-dependencies:
- dependency-name: webpack-dev-server
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* cleanup

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Andrew Azores <[email protected]>
  • Loading branch information
dependabot[bot] and andrewazores authored Sep 18, 2024
1 parent f443bbc commit 2e33c69
Show file tree
Hide file tree
Showing 3 changed files with 304 additions and 151 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-dev-server": "^5.1.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
Expand Down
2 changes: 0 additions & 2 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ module.exports = (env) => {
// https://medium.com/hackernoon/the-100-correct-way-to-split-your-chunks-with-webpack-f8a9df5b7758
optimization: {
runtimeChunk: 'single', // create a runtime file to be shared for all generated chunks
moduleIds: 'deterministic', // avoid changing module.id of vendor bundles: https://webpack.js.org/guides/caching/#module-identifiers
splitChunks: {
chunks: 'all', // https://webpack.js.org/plugins/split-chunks-plugin/#splitchunkschunks
maxInitialRequests: Infinity,
Expand Down Expand Up @@ -152,7 +151,6 @@ module.exports = (env) => {
filename: '[name].[contenthash].bundle.js',
chunkFilename: '[id].[contenthash].bundle.js', // lazy-load modules
hashFunction: "xxhash64",
path: path.resolve(__dirname, 'dist'),
publicPath: 'auto',
clean: true
},
Expand Down
Loading

0 comments on commit 2e33c69

Please sign in to comment.