File tree Expand file tree Collapse file tree 14 files changed +28
-50
lines changed Expand file tree Collapse file tree 14 files changed +28
-50
lines changed Original file line number Diff line number Diff line change 1
1
.git
2
2
dist
3
3
node_modules
4
+ packages/angular/cli/node_modules
5
+ packages/angular/create/node_modules
6
+ packages/angular/pwa/node_modules
7
+ packages/angular_devkit/architect/node_modules
8
+ packages/angular_devkit/architect_cli/node_modules
9
+ packages/angular_devkit/benchmark/node_modules
10
+ packages/angular_devkit/build_angular/node_modules
11
+ packages/angular_devkit/build_webpack/node_modules
12
+ packages/angular_devkit/core/node_modules
13
+ packages/angular_devkit/schematics/node_modules
14
+ packages/angular_devkit/schematics_cli/node_modules
15
+ packages/ngtools/webpack/node_modules
16
+ packages/schematics/angular/node_modules
Original file line number Diff line number Diff line change @@ -17,11 +17,12 @@ ts_library(
17
17
name = "angular-cli" ,
18
18
package_name = "@angular/cli" ,
19
19
srcs = glob (
20
- include = ["**/*.ts" ],
20
+ include = [
21
+ "lib/**/*.ts" ,
22
+ "src/**/*.ts" ,
23
+ ],
21
24
exclude = [
22
25
"**/*_spec.ts" ,
23
- # NB: we need to exclude the nested node_modules that is laid out by yarn workspaces
24
- "node_modules/**" ,
25
26
],
26
27
) + [
27
28
# @external_begin
@@ -33,12 +34,10 @@ ts_library(
33
34
data = glob (
34
35
include = [
35
36
"bin/**/*" ,
36
- "**/*.json " ,
37
- "**/*.md " ,
37
+ "src/ **/*.md " ,
38
+ "src/ **/*.json " ,
38
39
],
39
40
exclude = [
40
- # NB: we need to exclude the nested node_modules that is laid out by yarn workspaces
41
- "node_modules/**" ,
42
41
"lib/config/workspace-schema.json" ,
43
42
],
44
43
) + [
Original file line number Diff line number Diff line change @@ -10,13 +10,7 @@ licenses(["notice"])
10
10
ts_library (
11
11
name = "create" ,
12
12
package_name = "@angular/create" ,
13
- srcs = glob (
14
- ["**/*.ts" ],
15
- exclude = [
16
- # NB: we need to exclude the nested node_modules that is laid out by yarn workspaces
17
- "node_modules/**" ,
18
- ],
19
- ),
13
+ srcs = ["src/index.ts" ],
20
14
deps = [
21
15
"//packages/angular/cli:angular-cli" ,
22
16
"@npm//@types/node" ,
Original file line number Diff line number Diff line change @@ -15,20 +15,8 @@ package(default_visibility = ["//visibility:public"])
15
15
ts_library (
16
16
name = "pwa" ,
17
17
package_name = "@angular/pwa" ,
18
- srcs = glob (
19
- ["**/*.ts" ],
20
- # Currently, this library is used only with the rollup plugin.
21
- # To make it simpler for downstream repositories to compile this, we
22
- # neither provide compile-time deps as an `npm_install` rule, nor do we
23
- # expect the downstream repository to install @types/webpack[-*]
24
- # So we exclude files that depend on webpack typings.
25
- exclude = [
26
- "pwa/files/**/*" ,
27
- "**/*_spec.ts" ,
28
- # NB: we need to exclude the nested node_modules that is laid out by yarn workspaces
29
- "node_modules/**" ,
30
- ],
31
- ) + [
18
+ srcs = [
19
+ "pwa/index.ts" ,
32
20
"//packages/angular/pwa:pwa/schema.ts" ,
33
21
],
34
22
data = glob (
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ ts_library(
18
18
include = ["src/**/*.ts" ],
19
19
exclude = [
20
20
"src/**/*_spec.ts" ,
21
- "src/**/*_benchmark.ts" ,
22
21
],
23
22
),
24
23
module_name = "@angular-devkit/benchmark" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ ts_library(
20
20
include = ["src/**/*.ts" ],
21
21
exclude = [
22
22
"src/**/*_spec.ts" ,
23
- "src/**/*_benchmark.ts" ,
24
23
],
25
24
),
26
25
data = glob (
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ ts_library(
18
18
exclude = [
19
19
"testing/**/*.ts" ,
20
20
"**/*_spec.ts" ,
21
- "**/*_benchmark.ts" ,
22
21
],
23
22
),
24
23
data = ["package.json" ],
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ ts_library(
14
14
include = ["**/*.ts" ],
15
15
exclude = [
16
16
"**/*_spec.ts" ,
17
- "**/*_benchmark.ts" ,
18
17
],
19
18
),
20
19
module_name = "@angular-devkit/core/node/testing" ,
Original file line number Diff line number Diff line change @@ -20,16 +20,11 @@ ts_library(
20
20
include = ["src/**/*.ts" ],
21
21
exclude = [
22
22
"src/**/*_spec.ts" ,
23
- "src/**/*_benchmark.ts" ,
24
- ],
25
- ),
26
- data = glob (
27
- include = ["**/*.json" ],
28
- exclude = [
29
- # NB: we need to exclude the nested node_modules that is laid out by yarn workspaces
30
- "node_modules/**" ,
31
23
],
32
24
),
25
+ data = [
26
+ "package.json" ,
27
+ ],
33
28
module_name = "@angular-devkit/schematics" ,
34
29
module_root = "src/index.d.ts" ,
35
30
deps = [
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ ts_library(
15
15
exclude = [
16
16
"node/**/*.ts" ,
17
17
"**/*_spec.ts" ,
18
- "**/*_benchmark.ts" ,
19
18
],
20
19
),
21
20
data = ["package.json" ],
You can’t perform that action at this time.
0 commit comments