File tree Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Expand file tree Collapse file tree 4 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ ts_library(
18
18
"**/*_spec_large.ts" ,
19
19
],
20
20
),
21
+ data = glob (["**/*.json" ]),
21
22
deps = [
22
23
"//packages/angular_devkit/architect" ,
23
24
"//packages/angular_devkit/core" ,
@@ -30,4 +31,4 @@ ts_library(
30
31
# @typings: semver
31
32
],
32
33
tsconfig = "//:tsconfig.json"
33
- )
34
+ )
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ ts_library(
23
23
"**/*_spec_large.ts" ,
24
24
],
25
25
),
26
+ data = glob (["**/*.json" ]),
26
27
deps = [
27
28
"//packages/angular_devkit/core" ,
28
29
"//packages/angular_devkit/core:node" ,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ ts_library(
18
18
"src/**/*_benchmark.ts" ,
19
19
],
20
20
),
21
+ data = glob (["**/*.json" ]),
21
22
module_name = "@angular-devkit/core" ,
22
23
module_root = "src" ,
23
24
deps = [
Original file line number Diff line number Diff line change
1
+ # Copyright Google Inc. All Rights Reserved.
2
+ #
3
+ # Use of this source code is governed by an MIT-style license that can be
4
+ # found in the LICENSE file at https://angular.io/license
5
+
6
+ licenses (["notice" ]) # MIT
7
+
8
+ load ("//tools:defaults.bzl" , "ts_library" )
9
+
10
+ ts_library (
11
+ name = "utility" ,
12
+ srcs = glob (
13
+ include = ["utility/**/*.ts" ],
14
+ exclude = [
15
+ "utility/**/*_spec.ts" ,
16
+ "utility/test/**" ,
17
+ ],
18
+ ),
19
+ visibility = ["//visibility:public" ],
20
+ deps = [
21
+ "//packages/angular_devkit/core" ,
22
+ "//packages/angular_devkit/schematics" ,
23
+ "//packages/angular_devkit/schematics:tasks" ,
24
+ # @typings: typescript
25
+ # @typings: node
26
+ ],
27
+ )
You can’t perform that action at this time.
0 commit comments