Skip to content

Commit 310da32

Browse files
devversionjelbourn
authored andcommitted
build: fix bazel ci compilation (#9267)
* Fixes the Bazel CI compilation by aligning the WORKSPACE with the latest one from angular/angular
1 parent 594ea78 commit 310da32

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
anchor_1: &job_defaults
1212
working_directory: ~/ng
1313
docker:
14-
- image: angular/ngcontainer:0.0.7
14+
- image: angular/ngcontainer:0.1.0
1515

1616
# After checkout, rebase on top of master.
1717
# Similar to travis behavior, but not quite the same.

WORKSPACE

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,12 @@ sass_repositories()
2626
git_repository(
2727
name = "build_bazel_rules_typescript",
2828
remote = "https://github.com/bazelbuild/rules_typescript.git",
29-
tag = "0.6.0",
29+
commit = "89d2c75066bea3d9c942f29dd1d2ea543c58d6d5",
3030
)
3131

32-
load("@build_bazel_rules_typescript//:defs.bzl", "ts_repositories")
33-
ts_repositories()
32+
# Setup TypeScript Bazel workspace
33+
load("@build_bazel_rules_typescript//:setup.bzl", "ts_setup_workspace")
34+
ts_setup_workspace()
3435

3536
# Add Angular rules
3637
local_repository(

0 commit comments

Comments
 (0)