Skip to content

Commit ddd9927

Browse files
committed
Fix bazel build
* Due to the fact that the @angular-devkit/schematics now handles Bazel better, the template files will be resolved through NodeJS. This means that the template files need to be referenced in the @//:node_modules label.
1 parent 77cdd1d commit ddd9927

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ filegroup(
3838
"*.d.ts",
3939
]] + [
4040
"node_modules/http-server/**",
41+
# Reference all files of the "@schematics/angular" package because the schematic
42+
# tests depend on the template files of the angular schematics.
43+
"node_modules/@schematics/angular/**",
4144
]),
4245
)
4346

0 commit comments

Comments
 (0)