Skip to content

Commit 21d75a2

Browse files
authored
refactor: use Bazel 8 feature to ignore node_modules (#416)
1 parent a4198d1 commit 21d75a2

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.bazelignore

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,3 @@ prisma/
2323
rules_nodejs_to_rules_js_migration/
2424
ts_project_transpiler/
2525
vercel_pkg/
26-
27-
# node_modules and dist directories that should be ignored:
28-
qwik/app/node_modules/
29-
qwik/app/dist/
30-
qwik/lib/node_modules/
31-
qwik/lib/dist/

REPO.bazel

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""Global repository settings.
2+
3+
See https://bazel.build/rules/lib/globals/repo
4+
"""
5+
ignore_directories([
6+
"**/dist",
7+
"**/node_modules",
8+
"**/.pytest_cache",
9+
"**/__pycache__",
10+
])

0 commit comments

Comments
 (0)