Skip to content

Commit

Permalink
feat(typescript): include label in the ts_project progress message (#…
Browse files Browse the repository at this point in the history
…1944)

fixes #1927
  • Loading branch information
alexeagle authored Jun 7, 2020
1 parent 72f19e7 commit 76e8bd1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/typescript/internal/ts_project.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,10 @@ def _ts_project_impl(ctx):
arguments = [arguments],
outputs = outputs,
executable = "tsc",
progress_message = "Compiling TypeScript project %s" % ctx.file.tsconfig.short_path,
progress_message = "Compiling TypeScript project %s [tsc -p %s]" % (
ctx.label,
ctx.file.tsconfig.short_path,
),
)

providers = [
Expand Down

0 comments on commit 76e8bd1

Please sign in to comment.