forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBUILD.bazel
More file actions
26 lines (24 loc) · 759 Bytes
/
BUILD.bazel
File metadata and controls
26 lines (24 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
load("//tools:defaults.bzl", "ts_project")
package(default_visibility = ["//visibility:public"])
ts_project(
name = "utils",
testonly = True,
srcs = glob(["**/*.ts"]),
data = [
"//tests/legacy-cli/e2e/ng-snapshot",
],
deps = [
"//:node_modules/@types/jasmine",
"//:node_modules/@types/node",
"//:node_modules/@types/semver",
"//:node_modules/fast-glob",
"//:node_modules/protractor",
"//:node_modules/semver",
"//:node_modules/verdaccio",
"//:node_modules/verdaccio-auth-memory",
"//tests:node_modules/@types/tar-stream",
"//tests:node_modules/rxjs",
"//tests:node_modules/tar-stream",
"//tests:node_modules/tree-kill",
],
)