From f0054f0732795cc230340df11b51e2b5ac67bf43 Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Wed, 17 Dec 2025 13:49:51 +0000 Subject: [PATCH 1/2] build: migrate Bazel ignore rules from .bazelignore to REPO.bazel See: https://bazel.build/rules/lib/globals/repo and https://github.com/aspect-build/rules_js/blob/092dd7892b816f899c7ab5b794fdb6236abb6939/docs/pnpm.md?plain=1#L77 --- .bazelignore | 12 ------------ REPO.bazel | 1 + 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 .bazelignore create mode 100644 REPO.bazel diff --git a/.bazelignore b/.bazelignore deleted file mode 100644 index 0099233a1..000000000 --- a/.bazelignore +++ /dev/null @@ -1,12 +0,0 @@ -node_modules -dist - -bazel/integration/tests/angular-cli/.angular/ -bazel/integration/tests/angular-cli/node_modules/ -bazel/integration/tests/nested_bazel_workspaces/basic/node_modules -bazel/integration/tests/package_mappings/node_modules/ -bazel/integration/tests/playwright_chromium/node_modules - -bazel/node_modules -bazel/spec-bundling/test/node_modules -.github/ng-renovate/node_modules diff --git a/REPO.bazel b/REPO.bazel new file mode 100644 index 000000000..7e93ddaca --- /dev/null +++ b/REPO.bazel @@ -0,0 +1 @@ +ignore_directories(["dist", "**/node_modules/**"]) From 1bbd41fc14fac7e8b4c4ad5e692b3251e402710f Mon Sep 17 00:00:00 2001 From: Alan Agius <17563226+alan-agius4@users.noreply.github.com> Date: Wed, 17 Dec 2025 14:01:17 +0000 Subject: [PATCH 2/2] fixup! build: migrate Bazel ignore rules from .bazelignore to REPO.bazel --- REPO.bazel | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/REPO.bazel b/REPO.bazel index 7e93ddaca..926421e59 100644 --- a/REPO.bazel +++ b/REPO.bazel @@ -1 +1,5 @@ -ignore_directories(["dist", "**/node_modules/**"]) +ignore_directories([ + "dist", + "**/node_modules/**", + "**/.angular", +])