aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-10 11:06:40 +0000
committerFuwn <[email protected]>2026-02-10 11:06:40 +0000
commit87eaefde0b18317750b99a489ccf38a58cdc90f7 (patch)
tree131da5157a2ca0a816599eb2a4418de0ddb79517
parentfeat: Initial commit (diff)
downloaddeppa-87eaefde0b18317750b99a489ccf38a58cdc90f7.tar.xz
deppa-87eaefde0b18317750b99a489ccf38a58cdc90f7.zip
feat(scanner): Add additional Zig dependency directory
-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,