mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Release angular.dev on each commit to the appropriate version of the documentation site based on the current state of the repository. PR Close #55792
18 lines
360 B
Text
18 lines
360 B
Text
load("//tools:defaults.bzl", "esbuild_checked_in")
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
])
|
|
|
|
esbuild_checked_in(
|
|
name = "main",
|
|
entry_point = "//.github/actions/deploy-docs-site/lib:main.ts",
|
|
external = [
|
|
"undici",
|
|
],
|
|
platform = "node",
|
|
target = "node14",
|
|
deps = [
|
|
"//.github/actions/deploy-docs-site/lib",
|
|
],
|
|
)
|