Skip to content

Commit b4adb2e

Browse files
committed
build: update to bazel version 7.6.0 (#2953)
PR Close #2953
1 parent 340064a commit b4adb2e

File tree

4 files changed

+123
-3
lines changed

4 files changed

+123
-3
lines changed

.bazelversion

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.5.0
1+
7.6.0

MODULE.bazel

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# TODO: Investigate bzlmod and use it where possible.
2+
3+
module(
4+
name = "devinfra",
5+
)

MODULE.bazel.lock

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

ng-dev/BUILD.bazel

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ const require = __cjsCompatRequire(import.meta.url);
9898
],
9999
},
100100
entry_points = [
101-
"cli.ts",
102-
"index.ts",
101+
"cli.js",
102+
"index.js",
103103
# These additional entry-points need to be generated since the `ng-dev` tool tries
104104
# to launch these files/scripts dynamically (through e.g. `spawn` or `fork`).
105105
"//ng-dev/release/build:build-worker",
@@ -111,6 +111,11 @@ const require = __cjsCompatRequire(import.meta.url);
111111
platform = "node",
112112
sourcemap = "external",
113113
splitting = True,
114+
tags = [
115+
# We prevent this from executing remotely so that the `EXTERNAL` packages are still present in
116+
# node_modules when running `ng-dev` locally.
117+
"no-remote",
118+
],
114119
target = "node22",
115120
deps = [
116121
":ng-dev",

0 commit comments

Comments
 (0)