aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--scanner.go1
2 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index e1dc5e5..8d616c6 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ task install
## Detected Directories
-`node_modules`, `target`, `.next`, `.nuxt`, `__pycache__`, `.venv`, `venv`, `.gradle`, `Pods`, `zig-cache`, `zig-out`, `_build`, `.dart_tool`
+`node_modules`, `target`, `.next`, `.nuxt`, `__pycache__`, `.venv`, `venv`, `.gradle`, `Pods`, `.zig-cache`, `zig-cache`, `zig-out`, `_build`, `.dart_tool`
Want to add a new detected or ignored directory? Open a PR to [`scanner.go`](https://github.com/Fuwn/deppa/blob/main/scanner.go) after testing.
diff --git a/scanner.go b/scanner.go
index f9d3ff4..9c983b2 100644
--- a/scanner.go
+++ b/scanner.go
@@ -18,6 +18,7 @@ var knownDependencyDirectories = map[string]bool{
"venv": true,
".gradle": true,
"Pods": true,
+ ".zig-cache": true,
"zig-cache": true,
"zig-out": true,
"_build": true,