Skip to content

Commit

Permalink
fix: include assets when using ts_project with transpiler (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbedard authored Feb 2, 2023
1 parent 9c351f5 commit 30543cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def ts_project(
name = name,
# Include the tsc target in srcs to pick-up both the direct & transitive declaration outputs so
# that this js_library can be a valid dep for downstream ts_project or other rules_js derivative rules.
srcs = [transpile_target_name, tsc_target_name],
srcs = [transpile_target_name, tsc_target_name] + assets,
deps = deps,
data = data,
**common_kwargs
Expand Down

0 comments on commit 30543cd

Please sign in to comment.