From b4313941921b908182459e6edffcc59eab3c4dcf Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Tue, 21 Jan 2020 18:37:01 +0100 Subject: [PATCH] build: update rules_sass version to latest Updates `rules_sass` to the latest version that contains: https://github.com/bazelbuild/rules_sass/commit/dd0079be310f918d50fe6a196ff82e5872433eb4. This fixes that errors are reported silently and only shown once the CSS file is served in the browser. It still means that the message might not be printed in the terminal, since there is still https://github.com/bazelbuild/rules_sass/issues/96, but it's better seeing that something failed at compilation time. --- WORKSPACE | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/WORKSPACE b/WORKSPACE index 2fad70ce046a..e27ecf789640 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -15,11 +15,10 @@ http_archive( # Add sass rules http_archive( name = "io_bazel_rules_sass", - sha256 = "77e241148f26d5dbb98f96fe0029d8f221c6cb75edbb83e781e08ac7f5322c5f", - strip_prefix = "rules_sass-1.24.0", + sha256 = "c78be58f5e0a29a04686b628cf54faaee0094322ae0ac99da5a8a8afca59a647", + strip_prefix = "rules_sass-1.25.0", urls = [ - "https://github.com/bazelbuild/rules_sass/archive/1.24.0.zip", - "https://mirror.bazel.build/github.com/bazelbuild/rules_sass/archive/1.24.0.zip", + "https://github.com/bazelbuild/rules_sass/archive/1.25.0.zip", ], )