File tree 3 files changed +18
-16
lines changed
3 files changed +18
-16
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ package(default_visibility = ["//visibility:public"])
5
5
6
6
ng_project (
7
7
name = "deferred-content" ,
8
- srcs = glob (
9
- ["**/*.ts" ],
10
- exclude = ["**/*.spec.ts" ],
11
- ),
8
+ srcs = [
9
+ "deferred-content.ts" ,
10
+ "index.ts" ,
11
+ "public-api.ts" ,
12
+ ],
12
13
deps = [
13
14
"//:node_modules/@angular/core" ,
14
15
],
@@ -17,10 +18,9 @@ ng_project(
17
18
ts_project (
18
19
name = "unit_test_sources" ,
19
20
testonly = True ,
20
- srcs = glob (
21
- ["**/*.spec.ts" ],
22
- exclude = ["**/*.e2e.spec.ts" ],
23
- ),
21
+ srcs = [
22
+ "deferred-content.spec.ts" ,
23
+ ],
24
24
deps = [
25
25
":deferred-content" ,
26
26
"//:node_modules/@angular/core" ,
Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ package(default_visibility = ["//visibility:public"])
4
4
5
5
ng_project (
6
6
name = "tabs" ,
7
- srcs = glob (
8
- ["**/*.ts" ],
9
- exclude = ["**/*.spec.ts" ],
10
- ),
7
+ srcs = [
8
+ "index.ts" ,
9
+ "public-api.ts" ,
10
+ "tabs.ts" ,
11
+ ],
11
12
deps = [
12
13
"//src/cdk-experimental/deferred-content" ,
13
14
"//src/cdk-experimental/ui-patterns" ,
Original file line number Diff line number Diff line change @@ -4,10 +4,11 @@ package(default_visibility = ["//visibility:public"])
4
4
5
5
ts_project (
6
6
name = "tabs" ,
7
- srcs = glob (
8
- ["**/*.ts" ],
9
- exclude = ["**/*.spec.ts" ],
10
- ),
7
+ srcs = [
8
+ "tab.ts" ,
9
+ "tablist.ts" ,
10
+ "tabpanel.ts" ,
11
+ ],
11
12
deps = [
12
13
"//:node_modules/@angular/core" ,
13
14
"//src/cdk-experimental/ui-patterns/behaviors/event-manager" ,
You can’t perform that action at this time.
0 commit comments