Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"terser": "5.39.0",
"tree-kill": "1.2.2",
"tslib": "2.8.1",
"webpack": "5.98.0",
"webpack": "5.99.1",
"webpack-dev-middleware": "7.4.2",
"webpack-dev-server": "5.2.1",
"webpack-merge": "6.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class IndexHtmlWebpackPlugin extends IndexHtmlGenerator {
}

files.push({
name: chunk.name,
name: chunk.name ?? undefined,
file,
extension: extname(file),
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class RemoveHashPlugin {

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

Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"devDependencies": {
"@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER",
"@ngtools/webpack": "workspace:0.0.0-PLACEHOLDER",
"webpack": "5.98.0",
"webpack": "5.99.1",
"webpack-dev-server": "5.2.1"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_webpack/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function getEmittedFiles(compilation: Compilation): EmittedFiles[] {
chunkFileNames.add(file);
files.push({
id: chunk.id?.toString(),
name: chunk.name,
name: chunk.name ?? undefined,
file,
extension: path.extname(file),
initial: chunk.isOnlyInitial(),
Expand Down
2 changes: 1 addition & 1 deletion packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
"@angular/compiler": "20.0.0-next.5",
"@angular/compiler-cli": "20.0.0-next.5",
"typescript": "5.8.3",
"webpack": "5.98.0"
"webpack": "5.99.1"
}
}
100 changes: 50 additions & 50 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.