From cf49e1b69bcbadd99d011bf73e1ac43001fd6ec6 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 6 Aug 2025 14:51:10 +0000 Subject: [PATCH] refactor(bazel): drop interop support for http_server Drop toolchain interop support for http_server tooling --- bazel/http-server/index.bzl | 3 --- 1 file changed, 3 deletions(-) diff --git a/bazel/http-server/index.bzl b/bazel/http-server/index.bzl index 0fa18f3cc..6de1ba653 100644 --- a/bazel/http-server/index.bzl +++ b/bazel/http-server/index.bzl @@ -1,5 +1,4 @@ load("@aspect_rules_js//js:providers.bzl", "JsInfo") -load("@build_bazel_rules_nodejs//:providers.bzl", "JSNamedModuleInfo") def _get_workspace_name(ctx): if ctx.label.workspace_root: @@ -28,8 +27,6 @@ def _http_server_rule_impl(ctx): # unwrapped in case there are built using TypeScript-specific rules. transitive_depsets = [] for dep in ctx.attr.deps: - if JSNamedModuleInfo in dep: - transitive_depsets.append(dep[JSNamedModuleInfo].sources) if JsInfo in dep: transitive_depsets.append(dep[JsInfo].transitive_sources) elif DefaultInfo in dep: