mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
73434e366f
Migrate the dependencies into the adev/package.json instead of importing from the the root package.json PR Close #62435
21 lines
473 B
Python
21 lines
473 B
Python
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",
|
|
],
|
|
)
|