Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
update bazel_skylib dependency to 0.6.0 and rules_sass to 1.15.1 (#127)
Browse files Browse the repository at this point in the history
* 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).
  • Loading branch information
c-parsons committed Nov 28, 2018
1 parent 1cdb612 commit 7a08959
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7a08959

Please sign in to comment.