Skip to content

Commit 292a16d

Browse files
committed
build: update all non-major dependencies
Closes angular#30260 as a pr takeover
1 parent ed92841 commit 292a16d

File tree

6 files changed

+96
-74
lines changed

6 files changed

+96
-74
lines changed

WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ rules_js_register_toolchains(
110110

111111
http_archive(
112112
name = "aspect_bazel_lib",
113-
sha256 = "2be8a5df0b20b0ed37604b050da01dbf7ad45ad44768c0d478b64779b9f58412",
114-
strip_prefix = "bazel-lib-2.15.3",
115-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.15.3/bazel-lib-v2.15.3.tar.gz",
113+
sha256 = "fc8fe1be58ae39f84a8613d554534760c7f0819d407afcc98bbcbd990523bfed",
114+
strip_prefix = "bazel-lib-2.16.0",
115+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.16.0/bazel-lib-v2.16.0.tar.gz",
116116
)
117117

118118
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")

packages/angular_devkit/build_angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@babel/plugin-transform-async-generator-functions": "7.27.1",
1919
"@babel/plugin-transform-async-to-generator": "7.27.1",
2020
"@babel/plugin-transform-runtime": "7.27.1",
21-
"@babel/preset-env": "7.27.1",
21+
"@babel/preset-env": "7.27.2",
2222
"@babel/runtime": "7.27.1",
2323
"@discoveryjs/json-ext": "0.6.3",
2424
"@ngtools/webpack": "workspace:0.0.0-PLACEHOLDER",
@@ -56,7 +56,7 @@
5656
"terser": "5.39.0",
5757
"tree-kill": "1.2.2",
5858
"tslib": "2.8.1",
59-
"webpack": "5.99.7",
59+
"webpack": "5.99.8",
6060
"webpack-dev-middleware": "7.4.2",
6161
"webpack-dev-server": "5.2.1",
6262
"webpack-merge": "6.0.1",

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.99.7",
25+
"webpack": "5.99.8",
2626
"webpack-dev-server": "5.2.1"
2727
},
2828
"peerDependencies": {

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.9",
3131
"@angular/compiler-cli": "20.0.0-next.9",
3232
"typescript": "5.8.3",
33-
"webpack": "5.99.7"
33+
"webpack": "5.99.8"
3434
}
3535
}

packages/ngtools/webpack/src/ivy/loader.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,12 @@ export function angularWebpackLoader(
6666
Parameters<typeof callback>[2],
6767
string | undefined
6868
>;
69-
resultMap.sources = resultMap.sources.map((source: string) =>
70-
path.join(path.dirname(this.resourcePath), source),
71-
);
69+
70+
if (resultMap.sources) {
71+
resultMap.sources = resultMap.sources.map((source: string) =>
72+
path.join(path.dirname(this.resourcePath), source),
73+
);
74+
}
7275
}
7376

7477
callback(undefined, resultContent, resultMap);

0 commit comments

Comments
 (0)