File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
crates/axl-runtime/src/builtins Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ def _fancy_tui(ctx: TaskContext, build: bazel.build.Build) -> int:
1515 event = events.poll()
1616
1717 if event != None:
18- print(debug(event.kind))
19- print(debug(event.id))
20-
2118 if event.kind == "target_configured":
2219 in_flight[event.id.label] = timer
2320
@@ -59,11 +56,9 @@ def _simple_tui(ctx: TaskContext, build: bazel.build.Build) -> int:
5956 exit = build.wait()
6057 return exit.code
6158
62-
6359def tui(ctx: TaskContext, build: bazel.build.Build) -> int:
6460 stdout = ctx.std.io.stdout
6561 if stdout.is_tty:
6662 return _fancy_tui(ctx, build)
67-
6863 else:
6964 return _simple_tui(ctx, build)
Original file line number Diff line number Diff line change @@ -28,6 +28,8 @@ pub fn expand_builtins(
2828
2929 let builtins = vec ! [
3030 ( "aspect/build.axl" , include_str!( "./aspect/build.axl" ) ) ,
31+ ( "aspect/common.axl" , include_str!( "./aspect/common.axl" ) ) ,
32+ ( "aspect/query.axl" , include_str!( "./aspect/query.axl" ) ) ,
3133 ( "aspect/test.axl" , include_str!( "./aspect/test.axl" ) ) ,
3234 (
3335 "aspect/MODULE.aspect" ,
You can’t perform that action at this time.
0 commit comments