From cc87e19b87e19fde0902c59695cb4d8b36d95cdc Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Thu, 17 Mar 2022 19:29:38 +0100 Subject: [PATCH] build: downgrade bazel nodejs version to work with m1 The `16.14.0` NodeJS version is not provided in the Bazel NodeJS rules and we cannot update since FW is blocked on the rules_nodejs v5 update.. --- WORKSPACE | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index aa686a71bc39..ceddfed9b008 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -55,7 +55,8 @@ bazel_skylib_workspace() load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "yarn_install") node_repositories( - node_version = "16.14.0", + # TOOD: Bring this in sync with CircleCI and nvmrc once we are on `rules_nodejs`#v5. + node_version = "16.10.0", package_json = ["//:package.json"], )