mirror of
https://github.com/aaddrick/claude-desktop-debian.git
synced 2026-05-17 08:36:35 +03:00
The .wrangler/ directory is a Cloudflare Wrangler tool cache (local dev sessions, build cache, simulated KV/D1 state) that's regenerated on demand by `wrangler dev` / `wrangler deploy`. Cloudflare's docs recommend gitignoring it. Currently shows up as untracked after any local Worker work — quieting the `git status` noise. Co-authored-by: Claude <claude@anthropic.com>
36 lines
390 B
Plaintext
36 lines
390 B
Plaintext
# Build output
|
|
build/
|
|
build_*/
|
|
|
|
# Dev folder
|
|
.dev/
|
|
|
|
# Reference implementation
|
|
reference/
|
|
|
|
# Node modules
|
|
node_modules/
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
*.AppImage
|
|
*.desktop
|
|
*.deb
|
|
*.exe
|
|
|
|
|
|
# Test build output
|
|
test-build/
|
|
|
|
# Reference files for source inspection
|
|
build-reference/
|
|
|
|
# Nix build output
|
|
result
|
|
result-*
|
|
|
|
# Wrangler (Cloudflare Worker dev/deploy cache)
|
|
worker/.wrangler/
|