From d4e57165abd741360d498942ee97064a882a5d60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Zl=C3=A1mal?= Date: Sun, 25 Jul 2021 20:43:49 -0500 Subject: [PATCH] Universe: remove Bazel files The reasoning is fairly simple: nobody is actively working on integrating with Bazel and there are no plans/capacity to do so. It might be because Bazel is quite complex, and it's hard to set up it in a way we need it to be. Moreover, it's blocking other efforts like this one for example: https://github.com/adeira/universe/pull/2154 (Yarn 2). Note: this doesn't mean that there is no need for something like Bazel. However, it doesn't have to be Bazel (preferably something simpler that does the job well enough). adeira-source-id: 4806cd43ff2ef8ca082d7b51e6c9da493e55f946 --- .npmignore | 2 -- BUILD.bazel | 14 -------------- 2 files changed, 16 deletions(-) delete mode 100644 BUILD.bazel diff --git a/.npmignore b/.npmignore index 1dd66d7..7b15489 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,2 @@ __tests__ test-helpers -BUILD.bazel -BUILD diff --git a/BUILD.bazel b/BUILD.bazel deleted file mode 100644 index 3093bf2..0000000 --- a/BUILD.bazel +++ /dev/null @@ -1,14 +0,0 @@ -load("//:bazel/macros/build_yarn_workspace.bzl", "build_yarn_workspace") -load("//:bazel/macros/test_yarn_workspace.bzl", "test_yarn_workspace") - -build_yarn_workspace( - name = "graphql-relay", - package_name = "@adeira/graphql-relay", -) - -test_yarn_workspace( - name = "test", - deps = [ - "@npm//graphql", - ], -)