From 7a08959b9d00c9ba592c1a1db145dffcf6c0b6bf Mon Sep 17 00:00:00 2001 From: c-parsons Date: Wed, 28 Nov 2018 12:33:22 -0500 Subject: [PATCH] update bazel_skylib dependency to 0.6.0 and rules_sass to 1.15.1 (#127) * update bazel_skylib dependency to 0.6.0 and rules_sass to 1.15.1 This fixes a few issues regarding --all_incompatible_changes. I also separated a tool from the inputs (wich is affecting anyone dependending on skydoc). --- WORKSPACE | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index d2a5003..050d67c 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -5,13 +5,22 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") git_repository( name = "io_bazel_rules_sass", remote = "https://github.com/bazelbuild/rules_sass.git", - commit = "8ccf4f1c351928b55d5dddf3672e3667f6978d60" + tag = "1.15.1", ) git_repository( name = "bazel_skylib", remote = "https://github.com/bazelbuild/bazel-skylib.git", tag = "0.6.0", ) +# Using bazel_skylib 0.6.0 requires at least version 0.16.2 of rules_nodejs. +# (rules_sass depends on rules_nodejs, and but the current rules_sass version +# depends on an older version of rule_nodejs.) +# TODO: Remove this direct dependency when rules_sass can be updated. +git_repository( + name = "build_bazel_rules_nodejs", + remote = "https://github.com/bazelbuild/rules_nodejs.git", + tag = "0.16.2", +) git_repository( name = "io_bazel", remote = "https://github.com/bazelbuild/bazel.git",