Skip to content

Commit 415165e

Browse files
committed
build: update webpack to v5.99.1
1 parent fc0e05f commit 415165e

File tree

7 files changed

+56
-56
lines changed

7 files changed

+56
-56
lines changed

packages/angular_devkit/build_angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"terser": "5.39.0",
5757
"tree-kill": "1.2.2",
5858
"tslib": "2.8.1",
59-
"webpack": "5.98.0",
59+
"webpack": "5.99.1",
6060
"webpack-dev-middleware": "7.4.2",
6161
"webpack-dev-server": "5.2.1",
6262
"webpack-merge": "6.0.1",

packages/angular_devkit/build_angular/src/tools/webpack/plugins/index-html-webpack-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export class IndexHtmlWebpackPlugin extends IndexHtmlGenerator {
6060
}
6161

6262
files.push({
63-
name: chunk.name,
63+
name: chunk.name ?? undefined,
6464
file,
6565
extension: extname(file),
6666
});

packages/angular_devkit/build_angular/src/tools/webpack/plugins/remove-hash-plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class RemoveHashPlugin {
1919

2020
apply(compiler: Compiler): void {
2121
compiler.hooks.compilation.tap('remove-hash-plugin', (compilation) => {
22-
const assetPath = (path: string, data: { chunk?: { name: string } }) => {
22+
const assetPath = (path: string, data: { chunk?: { name?: string | null } }) => {
2323
const chunkName = data.chunk?.name;
2424
const { chunkNames, hashFormat } = this.options;
2525

packages/angular_devkit/build_webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"devDependencies": {
2323
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
2424
"@ngtools/webpack": "workspace:0.0.0-PLACEHOLDER",
25-
"webpack": "5.98.0",
25+
"webpack": "5.99.1",
2626
"webpack-dev-server": "5.2.1"
2727
},
2828
"peerDependencies": {

packages/angular_devkit/build_webpack/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function getEmittedFiles(compilation: Compilation): EmittedFiles[] {
3434
chunkFileNames.add(file);
3535
files.push({
3636
id: chunk.id?.toString(),
37-
name: chunk.name,
37+
name: chunk.name ?? undefined,
3838
file,
3939
extension: path.extname(file),
4040
initial: chunk.isOnlyInitial(),

packages/ngtools/webpack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
"@angular/compiler": "20.0.0-next.5",
3131
"@angular/compiler-cli": "20.0.0-next.5",
3232
"typescript": "5.8.3",
33-
"webpack": "5.98.0"
33+
"webpack": "5.99.1"
3434
}
3535
}

pnpm-lock.yaml

Lines changed: 50 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)