mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
2fcafb65c5
Use defaults.bzl for the common macros PR Close #63383
19 lines
326 B
Python
19 lines
326 B
Python
load("//tools:defaults.bzl", "ts_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_project(
|
|
name = "test-utils",
|
|
srcs = ["index.ts"],
|
|
deps = [
|
|
"//:node_modules/@types/selenium-webdriver",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "files_for_docgen",
|
|
srcs = glob([
|
|
"**/*.ts",
|
|
]),
|
|
)
|