Skip to content

Commit d0b29e1

Browse files
committed
refactor(bazel): drop interop support for http_server (#2930)
Drop toolchain interop support for http_server tooling PR Close #2930
1 parent 7cec4e8 commit d0b29e1

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

bazel/http-server/index.bzl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
load("@aspect_rules_js//js:providers.bzl", "JsInfo")
2-
load("@build_bazel_rules_nodejs//:providers.bzl", "JSNamedModuleInfo")
32

43
def _get_workspace_name(ctx):
54
if ctx.label.workspace_root:
@@ -28,8 +27,6 @@ def _http_server_rule_impl(ctx):
2827
# unwrapped in case there are built using TypeScript-specific rules.
2928
transitive_depsets = []
3029
for dep in ctx.attr.deps:
31-
if JSNamedModuleInfo in dep:
32-
transitive_depsets.append(dep[JSNamedModuleInfo].sources)
3330
if JsInfo in dep:
3431
transitive_depsets.append(dep[JsInfo].transitive_sources)
3532
elif DefaultInfo in dep:

0 commit comments

Comments
 (0)