Skip to content
This repository was archived by the owner on Apr 4, 2025. It is now read-only.

Commit ff41127

Browse files
authored
Explicitly check for a minimum bazel version of 0.17.1 (#218)
1 parent b6bb414 commit ff41127

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

WORKSPACE

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ load("@angular//packages/bazel:package.bzl", "rules_angular_dependencies")
4343

4444
rules_angular_dependencies()
4545

46-
load("@build_bazel_rules_nodejs//:defs.bzl", "node_repositories", "yarn_install")
46+
load("@build_bazel_rules_nodejs//:defs.bzl", "check_bazel_version", "node_repositories", "yarn_install")
4747

48+
# The minimum bazel version to use with this example repo is 0.17.1
49+
check_bazel_version("0.17.1")
4850
node_repositories(
4951
node_version = "10.9.0",
5052
yarn_version = "1.9.2",

0 commit comments

Comments
 (0)