angular/adev/shared-docs/components/algolia-icon/BUILD.bazel
Joey Perrott 73434e366f build: migrate all dependencies for adev into adev/package.json (#62435)
Migrate the dependencies into the adev/package.json instead of importing from the the root package.json

PR Close #62435
2025-07-03 08:09:34 +00:00

20 lines
473 B
Text

load("//adev/shared-docs:defaults.bzl", "ng_project")
package(default_visibility = ["//visibility:private"])
ng_project(
name = "algolia-icon",
srcs = [
"algolia-icon.component.ts",
],
assets = [
"algolia-icon.component.html",
],
visibility = [
"//adev/shared-docs/components:__pkg__",
"//adev/shared-docs/components/search-dialog:__pkg__",
],
deps = [
"//adev:node_modules/@angular/core",
],
)