mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
26 lines
846 B
Text
26 lines
846 B
Text
load("//adev/shared-docs:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "marked",
|
|
srcs = glob(["**/*.mts"]),
|
|
visibility = [
|
|
"//adev/shared-docs/pipeline:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//adev:node_modules/@types/jsdom",
|
|
"//adev:node_modules/@types/node",
|
|
"//adev:node_modules/diff",
|
|
"//adev:node_modules/emoji-regex",
|
|
"//adev:node_modules/html-entities",
|
|
"//adev:node_modules/jsdom",
|
|
"//adev:node_modules/marked",
|
|
"//adev:node_modules/mermaid",
|
|
"//adev:node_modules/playwright-core",
|
|
"//adev:node_modules/shiki",
|
|
"//adev/shared-docs/pipeline/shared:linking",
|
|
"//adev/shared-docs/pipeline/shared:shiki",
|
|
"//adev/shared-docs/pipeline/shared/regions",
|
|
],
|
|
)
|