- Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathBUILD.bazel
53 lines (47 loc) · 1.16 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
49
50
51
52
53
# 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:defaults2.bzl", "jasmine_test", "ts_project")
licenses(["notice"])
package(default_visibility= ["//visibility:public"])
ts_project(
name="node",
srcs=glob(
include= ["**/*.ts"],
exclude= [
"testing/**/*.ts",
"**/*_spec.ts",
],
),
module_name="@angular-devkit/core/node",
deps= [
"//:node_modules/@types/node",
"//:node_modules/chokidar",
"//:node_modules/rxjs",
"//packages/angular_devkit/core",
],
)
ts_project(
name="node_test_lib",
testonly=True,
srcs=glob(
include= [
"**/*_spec.ts",
],
exclude= [
"testing/**/*.ts",
],
),
deps= [
":node",
"//:node_modules/@types/jasmine",
"//:node_modules/@types/node",
"//:node_modules/rxjs",
"//packages/angular_devkit/core",
],
)
jasmine_test(
name="node_test",
data= [":node_test_lib"],
)