mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
22 lines
454 B
Text
22 lines
454 B
Text
load("//adev/shared-docs:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "linking",
|
|
srcs = ["linking.mts"],
|
|
visibility = [
|
|
"//adev/shared-docs/pipeline:__subpackages__",
|
|
],
|
|
)
|
|
|
|
ts_project(
|
|
name = "shiki",
|
|
srcs = ["shiki.mts"],
|
|
visibility = [
|
|
"//adev/shared-docs/pipeline:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//adev:node_modules/shiki",
|
|
],
|
|
)
|