mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Migrate the dependencies into the adev/package.json instead of importing from the the root package.json PR Close #62435
20 lines
473 B
Text
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",
|
|
],
|
|
)
|