Skip to content
Closed
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 .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.5.0
7.6.0
5 changes: 5 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# TODO: Investigate bzlmod and use it where possible.

module(
name = "devinfra",
)
110 changes: 110 additions & 0 deletions MODULE.bazel.lock

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

9 changes: 7 additions & 2 deletions ng-dev/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ const require = __cjsCompatRequire(import.meta.url);
],
},
entry_points = [
"cli.ts",
"index.ts",
"cli.js",
"index.js",
# These additional entry-points need to be generated since the `ng-dev` tool tries
# to launch these files/scripts dynamically (through e.g. `spawn` or `fork`).
"//ng-dev/release/build:build-worker",
Expand All @@ -111,6 +111,11 @@ const require = __cjsCompatRequire(import.meta.url);
platform = "node",
sourcemap = "external",
splitting = True,
tags = [
# We prevent this from executing remotely so that the `EXTERNAL` packages are still present in
# node_modules when running `ng-dev` locally.
"no-remote",
],
target = "node22",
deps = [
":ng-dev",
Expand Down