diff --git a/integration/bazel/WORKSPACE b/integration/bazel/WORKSPACE index 372ca97e2a..e33263b087 100644 --- a/integration/bazel/WORKSPACE +++ b/integration/bazel/WORKSPACE @@ -2,10 +2,15 @@ workspace(name = "bazel_integration_test") load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository") -git_repository( +# Using a pre-release snapshot to pick up a commit that makes all nodejs_binary +# programs produce source-mapped stack traces. +RULES_NODEJS_VERSION = "926349cea4cd360afcd5647ccdd09d2d2fb471aa" + +http_archive( name = "build_bazel_rules_nodejs", - remote = "https://github.com/bazelbuild/rules_nodejs.git", - commit = "230d39a391226f51c03448f91eb61370e2e58c42", + url = "https://github.com/bazelbuild/rules_nodejs/archive/%s.zip" % RULES_NODEJS_VERSION, + strip_prefix = "rules_nodejs-%s" % RULES_NODEJS_VERSION, + sha256 = "5ba3c8c209078c2e3f0c6aa4abd01a1a561f92a5bfda04e25604af5f4734d69d", ) load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories")