2024-07-23 16:50:12 +00:00
|
|
|
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",
|
2025-03-07 09:31:06 +00:00
|
|
|
"@npm//tinyglobby",
|
2024-07-23 16:50:12 +00:00
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
|
name = "index",
|
|
|
|
|
srcs = [
|
|
|
|
|
"index.ts",
|
|
|
|
|
],
|
|
|
|
|
visibility = [
|
|
|
|
|
"//adev/shared-docs:__subpackages__",
|
|
|
|
|
],
|
|
|
|
|
deps = [
|
|
|
|
|
":stackblitz",
|
|
|
|
|
"@npm//@types/node",
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
exports_files([
|
|
|
|
|
"index.ts",
|
|
|
|
|
])
|