Skip to content

Commit

Permalink
feat(bazel): enforce version
Browse files Browse the repository at this point in the history
  • Loading branch information
nmeier authored and aeddi committed Oct 15, 2019
1 parent 44347b8 commit d9cad1a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion go/WORKSPACE
@@ -1,5 +1,16 @@
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

# check bazel version

http_archive(
name = "build_bazel_rules_nodejs",
sha256 = "ad4be2c6f40f5af70c7edf294955f9d9a0222c8e2756109731b25f79ea2ccea0",
urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/0.38.3/rules_nodejs-0.38.3.tar.gz"],
)

load("@build_bazel_rules_nodejs//:index.bzl", "check_bazel_version")

check_bazel_version("0.29.1")

# rules_go

Expand Down

0 comments on commit d9cad1a

Please sign in to comment.