File tree 6 files changed +44
-40
lines changed
6 files changed +44
-40
lines changed Original file line number Diff line number Diff line change 1
- load ("//tools:defaults .bzl" , "ts_library " )
1
+ load ("//tools:interop .bzl" , "ts_project " )
2
2
load (":e2e.bzl" , "e2e_suites" )
3
3
4
- ts_library (
4
+ ts_project (
5
5
name = "runner" ,
6
6
testonly = True ,
7
7
srcs = [
@@ -12,11 +12,11 @@ ts_library(
12
12
"verdaccio_auth.yaml" ,
13
13
],
14
14
deps = [
15
- "//packages/angular_devkit/core " ,
16
- "//packages/angular_devkit/core/node " ,
17
- "//tests/legacy-cli/e2e/utils " ,
18
- "@npm//ansi-colors " ,
19
- "@npm//fast-glob " ,
15
+ "//:root_modules/ansi-colors " ,
16
+ "//:root_modules/fast-glob " ,
17
+ "//packages/angular_devkit/core:core_rjs " ,
18
+ "//packages/angular_devkit/core/node:node_rjs " ,
19
+ "//tests/legacy-cli/e2e/utils:utils_rjs " ,
20
20
],
21
21
)
22
22
Original file line number Diff line number Diff line change 1
- load ("//tools:defaults .bzl" , "ts_library " )
1
+ load ("//tools:interop .bzl" , "ts_project " )
2
2
3
- ts_library (
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ ts_project (
4
6
name = "initialize" ,
5
7
testonly = True ,
6
8
srcs = glob (["**/*.ts" ]),
7
9
data = [
8
10
"//:config-files" ,
9
11
],
10
- visibility = ["//visibility:public" ],
11
12
deps = [
12
- "//tests/legacy-cli/e2e/utils" ,
13
+ "//tests/legacy-cli/e2e/utils:utils_rjs " ,
13
14
],
14
15
)
Original file line number Diff line number Diff line change 1
- load ("//tools:defaults .bzl" , "ts_library " )
1
+ load ("//tools:interop .bzl" , "ts_project " )
2
2
3
- ts_library (
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ ts_project (
4
6
name = "setup" ,
5
7
testonly = True ,
6
8
srcs = glob (["**/*.ts" ]),
7
- visibility = ["//visibility:public" ],
8
9
deps = [
9
- "//tests/legacy-cli/e2e/utils" ,
10
+ "//tests/legacy-cli/e2e/utils:utils_rjs " ,
10
11
],
11
12
)
Original file line number Diff line number Diff line change 1
- load ("//tools:defaults .bzl" , "ts_library " )
1
+ load ("//tools:interop .bzl" , "ts_project " )
2
2
3
- ts_library (
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ ts_project (
4
6
name = "tests" ,
5
7
testonly = True ,
6
8
srcs = glob (["**/*.ts" ]),
7
9
data = [
8
10
"//tests/legacy-cli/e2e/ng-snapshot" ,
9
11
],
10
- visibility = ["//visibility:public" ],
11
12
deps = [
12
- "//tests/legacy-cli/e2e/utils " ,
13
- "@npm// @types/express " ,
14
- "@npm//@types/semver " ,
15
- "@npm//express " ,
16
- "@npm//fast-glob " ,
17
- "@npm//semver " ,
13
+ "//:root_modules/@types/express " ,
14
+ "//:root_modules/ @types/semver " ,
15
+ "//:root_modules/express " ,
16
+ "//:root_modules/fast-glob " ,
17
+ "//:root_modules/semver " ,
18
+ "//tests/legacy-cli/e2e/utils:utils_rjs " ,
18
19
],
19
20
)
Original file line number Diff line number Diff line change 1
- load ("//tools:defaults .bzl" , "ts_library " )
1
+ load ("//tools:interop .bzl" , "ts_project " )
2
2
3
- ts_library (
3
+ package (default_visibility = ["//visibility:public" ])
4
+
5
+ ts_project (
4
6
name = "utils" ,
5
7
testonly = True ,
6
8
srcs = glob (["**/*.ts" ]),
7
9
data = [
8
10
"//tests/legacy-cli/e2e/ng-snapshot" ,
9
11
],
10
- visibility = ["//visibility:public" ],
11
12
deps = [
12
- "@npm//@types/semver" ,
13
- "@npm//ansi-colors" ,
14
- "@npm//fast-glob" ,
15
- "@npm//npm" ,
16
- "@npm//protractor" ,
17
- "@npm//rxjs" ,
18
- "@npm//semver" ,
19
- "@npm//tar" ,
20
- "@npm//tree-kill" ,
21
- "@npm//verdaccio" ,
22
- "@npm//verdaccio-auth-memory" ,
13
+ "//:root_modules/@types/jasmine" ,
14
+ "//:root_modules/@types/semver" ,
15
+ "//:root_modules/ansi-colors" ,
16
+ "//:root_modules/fast-glob" ,
17
+ "//:root_modules/npm" ,
18
+ "//:root_modules/protractor" ,
19
+ "//:root_modules/rxjs" ,
20
+ "//:root_modules/semver" ,
21
+ "//:root_modules/tar" ,
22
+ "//:root_modules/tree-kill" ,
23
+ "//:root_modules/verdaccio" ,
24
+ "//:root_modules/verdaccio-auth-memory" ,
23
25
],
24
26
)
Original file line number Diff line number Diff line change 43
43
" **/node_modules/**/*" ,
44
44
" **/third_party/**/*" ,
45
45
" packages/angular_devkit/schematics_cli/schematic/files/**/*" ,
46
- " packages/angular_devkit/*/test/**/*" ,
47
- " tests/**/*"
46
+ " packages/angular_devkit/*/test/**/*"
48
47
]
49
48
}
You can’t perform that action at this time.
0 commit comments