Skip to content

Commit

Permalink
build: update nodejs bazel rules
Browse files Browse the repository at this point in the history
* Updates to the latest version of the NodeJS rules to that we have:
bazel-contrib/rules_nodejs@c40ceb9

This should fix the flaky CircleCI bazel builds and should be
prioritized if possible.
  • Loading branch information
devversion committed Dec 11, 2018
1 parent 399019b commit ada4310
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# Add NodeJS rules (explicitly used for sass bundle rules)
http_archive(
name = "build_bazel_rules_nodejs",
url = "https://github.com/bazelbuild/rules_nodejs/archive/0.16.3.zip",
strip_prefix = "rules_nodejs-0.16.3",
# TODO(devversion): temporarily depend on a specific commit because we want to make sure that
# our CI is not flaky until there is a new version of the NodeJS rules. See commit:
# https://github.com/bazelbuild/rules_nodejs/commit/c40ceb960af4213164d4299d8fbc8220ebdd727f
url = "https://github.com/bazelbuild/rules_nodejs/archive/c40ceb960af4213164d4299d8fbc8220ebdd727f.zip",
strip_prefix = "rules_nodejs-c40ceb960af4213164d4299d8fbc8220ebdd727f",
)

# Add TypeScript rules
Expand Down

0 comments on commit ada4310

Please sign in to comment.