angular/adev/shared-docs/pipeline/examples/stackblitz/BUILD.bazel

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
744 B
Text
Raw Normal View History

load("//tools:defaults.bzl", "ts_library")
package(default_visibility = ["//visibility:public"])
ts_library(
name = "stackblitz",
srcs = glob(
[
"*.ts",
],
exclude = [
"index.ts",
],
),
deps = [
"//adev/shared-docs/pipeline/examples/shared",
"//adev/shared-docs/pipeline/guides",
"@npm//@types/jsdom",
"@npm//@types/node",
"@npm//jsdom",
"@npm//tinyglobby",
],
)
ts_library(
name = "index",
srcs = [
"index.ts",
],
visibility = [
"//adev/shared-docs:__subpackages__",
],
deps = [
":stackblitz",
"@npm//@types/node",
],
)
exports_files([
"index.ts",
])