Skip to content

Commit 76e8bd1

Browse files
authored
feat(typescript): include label in the ts_project progress message (#1944)
fixes #1927
1 parent 72f19e7 commit 76e8bd1

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/typescript/internal/ts_project.bzl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ def _ts_project_impl(ctx):
105105
arguments = [arguments],
106106
outputs = outputs,
107107
executable = "tsc",
108-
progress_message = "Compiling TypeScript project %s" % ctx.file.tsconfig.short_path,
108+
progress_message = "Compiling TypeScript project %s [tsc -p %s]" % (
109+
ctx.label,
110+
ctx.file.tsconfig.short_path,
111+
),
109112
)
110113

111114
providers = [

0 commit comments

Comments
 (0)