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
23 lines
502 B
Text
23 lines
502 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//.github/actions/deploy-docs-site:__subpackages__"])
|
|
|
|
exports_files([
|
|
"main.ts",
|
|
])
|
|
|
|
ts_library(
|
|
name = "lib",
|
|
srcs = glob(
|
|
["*.ts"],
|
|
),
|
|
#tsconfig = "//.github/actions/deploy-docs-site:tsconfig.json",
|
|
deps = [
|
|
"@npm//@actions/core",
|
|
"@npm//@actions/github",
|
|
"@npm//@angular/ng-dev",
|
|
"@npm//@types/node",
|
|
"@npm//@types/tmp",
|
|
"@npm//tmp",
|
|
],
|
|
)
|