mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Update `@bazel` packages to the latest 5.x version. Some of the changes here are modeled after angular/dev-infra@40c0ac8559. Co-Authored-By: George Kalpakas <kalpakas.g@gmail.com> PR Close #45431
31 lines
550 B
Text
31 lines
550 B
Text
load("@npm//@bazel/concatjs:index.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files(glob([
|
|
"**/*",
|
|
]))
|
|
|
|
ts_library(
|
|
name = "zone_d_ts",
|
|
srcs = [":zone.ts"],
|
|
deps = [
|
|
"@npm//@types/node",
|
|
],
|
|
)
|
|
|
|
ts_library(
|
|
name = "lib",
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
exclude = ["zone.ts"],
|
|
),
|
|
module_name = "zone.js/lib",
|
|
deps = [
|
|
":zone_d_ts",
|
|
"@npm//@types/jasmine",
|
|
"@npm//@types/node",
|
|
"@npm//rxjs",
|
|
"@npm//tslib",
|
|
],
|
|
)
|