mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
e220a615d1
This sync some of the changes we have on the main branch will allow more upcomming changes to land via a single PR. PR Close #63394
23 lines
454 B
Python
23 lines
454 B
Python
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",
|
|
],
|
|
)
|