Skip to content

Commit f332843

Browse files
authored
refactor: do not re-copy_to_bin ts_project(srcs) (#803)
1 parent 7e5f6d1 commit f332843

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/private/ts_project.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _ts_project_impl(ctx):
8888

8989
srcs_deps = ctx.attr.srcs + ctx.attr.deps
9090

91-
tsc_inputs = copy_files_to_bin_actions(ctx, srcs_inputs + tsconfig_inputs)
91+
tsc_inputs = srcs_inputs + copy_files_to_bin_actions(ctx, tsconfig_inputs)
9292
tsc_inputs_depset = depset(tsc_inputs, transitive = [tsconfig_transitive_deps])
9393
tsc_transitive_inputs_depset = depset(tsc_inputs, transitive = [
9494
_gather_types_from_js_infos(srcs_deps),

0 commit comments

Comments
 (0)