We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 849c602 commit b45dfa7Copy full SHA for b45dfa7
bazel/spec-bundling/spec-entrypoint.bzl
@@ -45,6 +45,7 @@ def _spec_entrypoint_impl(ctx):
45
for dep in ctx.attr.deps:
46
if JsInfo in dep:
47
spec_all_deps.append(dep[JsInfo].transitive_sources)
48
+ spec_all_deps.append(dep[JsInfo].npm_sources)
49
elif JSModuleInfo in dep:
50
spec_all_deps.append(dep[JSModuleInfo].sources)
51
else:
@@ -53,6 +54,7 @@ def _spec_entrypoint_impl(ctx):
53
54
for dep in ctx.attr.bootstrap:
55
56
bootstrap_all_deps.append(dep[JsInfo].transitive_sources)
57
+ bootstrap_all_deps.append(dep[JsInfo].npm_sources)
58
bootstrap_direct_deps.append(dep[JsInfo].sources)
59
60
bootstrap_all_deps.append(dep[JSModuleInfo].sources)
0 commit comments