diff options
| author | Fuwn <[email protected]> | 2026-02-10 11:06:40 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-10 11:06:40 +0000 |
| commit | 87eaefde0b18317750b99a489ccf38a58cdc90f7 (patch) | |
| tree | 131da5157a2ca0a816599eb2a4418de0ddb79517 | |
| parent | feat: Initial commit (diff) | |
| download | deppa-87eaefde0b18317750b99a489ccf38a58cdc90f7.tar.xz deppa-87eaefde0b18317750b99a489ccf38a58cdc90f7.zip | |
feat(scanner): Add additional Zig dependency directory
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | scanner.go | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -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. @@ -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, |