angular/adev/shared-docs/pipeline/shared/marked/BUILD.bazel
Matthieu Riegler e220a615d1 docs(docs-infra): patch port changes from main (#63394)
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
2025-08-26 09:48:03 -07:00

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",
],
)