From d6ea6428a951ae4e7492b74735ab7353a7f74998 Mon Sep 17 00:00:00 2001 From: Iain Macdonald Date: Mon, 21 Nov 2022 10:02:54 -0800 Subject: [PATCH] Remove managed_directories from WORKSPACE. This option is deprecated. The recommended replacement is to add an option to npm_install directives, but we don't have any in this repo. More here: https://github.com/bazelbuild/bazel/issues/15463 --- WORKSPACE | 1 - 1 file changed, 1 deletion(-) diff --git a/WORKSPACE b/WORKSPACE index 6a57eac19eb..dc302a9bab4 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -1,6 +1,5 @@ workspace( name = "buildbuddy", - managed_directories = {"@npm": ["node_modules"]}, ) load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")