We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4198d1 commit 21d75a2Copy full SHA for 21d75a2
.bazelignore
@@ -23,9 +23,3 @@ prisma/
23
rules_nodejs_to_rules_js_migration/
24
ts_project_transpiler/
25
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
@@ -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