-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathBUILD.bazel
48 lines (42 loc) · 1.23 KB
/
BUILD.bazel
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright Google Inc. All Rights Reserved.
#
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE file at https://angular.dev/license
load("//tools:defaults.bzl", "jasmine_test", "ts_project")
licenses(["notice"])
package(default_visibility = ["//visibility:public"])
ts_project(
name = "node",
srcs = glob(
include = ["**/*.ts"],
exclude = ["**/*_spec.ts"],
),
module_name = "@angular-devkit/architect/node",
deps = [
"//:node_modules/@types/node",
"//packages/angular_devkit/architect",
"//packages/angular_devkit/architect:node_modules/@angular-devkit/core",
"//packages/angular_devkit/architect:node_modules/rxjs",
],
)
ts_project(
name = "node_test_lib",
testonly = True,
srcs = glob(
include = [
"**/*_spec.ts",
],
),
deps = [
":node",
"//:node_modules/@types/jasmine",
"//:node_modules/@types/node",
"//packages/angular_devkit/architect",
"//packages/angular_devkit/architect:node_modules/rxjs",
"//packages/angular_devkit/architect/node/test:test_lib",
],
)
jasmine_test(
name = "node_test",
data = [":node_test_lib"],
)