Skip to content

Commit

Permalink
fix(builtin): add transitive typings to runfiles provider produced by…
Browse files Browse the repository at this point in the history
… js_library (#2547)
  • Loading branch information
mattem authored Mar 24, 2021
1 parent a8d8b0f commit 41117fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/js_library/js_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,9 @@ def _impl(ctx):
files = depset(transitive = files_depsets),
runfiles = ctx.runfiles(
files = all_files,
transitive_files = depset(transitive = files_depsets),
transitive_files = depset(
transitive = files_depsets + typings_depsets,
),
),
),
AmdNamesInfo(names = ctx.attr.amd_names),
Expand Down

0 comments on commit 41117fa

Please sign in to comment.