mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
1f4c5f72aa
clean up deps in bazel build scripts PR Close #63348
13 lines
238 B
Python
13 lines
238 B
Python
load("//tools:defaults.bzl", "ng_project")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_project(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//:node_modules/rxjs",
|
|
],
|
|
)
|