From d7158074507897a81857a9205473816a457f4742 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Sun, 7 Jan 2018 09:27:46 +0100 Subject: [PATCH] build: fix bazel ci compilation * Fixes the Bazel CI compilation by aligning the WORKSPACE with the latest one from angular/angular --- .circleci/config.yml | 2 +- WORKSPACE | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2af748fc498a..abfb198dbc38 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,7 +11,7 @@ anchor_1: &job_defaults working_directory: ~/ng docker: - - image: angular/ngcontainer:0.0.7 + - image: angular/ngcontainer:0.1.0 # After checkout, rebase on top of master. # Similar to travis behavior, but not quite the same. diff --git a/WORKSPACE b/WORKSPACE index 261c03798513..4ad782070032 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -26,11 +26,12 @@ sass_repositories() git_repository( name = "build_bazel_rules_typescript", remote = "https://github.com/bazelbuild/rules_typescript.git", - tag = "0.6.0", + commit = "89d2c75066bea3d9c942f29dd1d2ea543c58d6d5", ) -load("@build_bazel_rules_typescript//:defs.bzl", "ts_repositories") -ts_repositories() +# Setup TypeScript Bazel workspace +load("@build_bazel_rules_typescript//:setup.bzl", "ts_setup_workspace") +ts_setup_workspace() # Add Angular rules local_repository(