Skip to content

Commit b6a4d62

Browse files
ChanMeng666claude
andcommitted
chore: ignore .wrangler/, the replacement for the removed .vercel ignores
The Cloudflare migration deleted docs-site/.gitignore's `.vercel` line and the whole of playground/.gitignore (whose only line was `.vercel`), but never added the equivalent for wrangler's own local state directory. Both `.wrangler/` dirs already exist on disk from the cutover deploys; they are empty, so git cannot see them yet, and the first `wrangler dev` would have dropped untracked state into two workspaces with nothing ignoring it. One rule at the root rather than two per-workspace files, since both sites now have a wrangler.jsonc beside their build output. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01UyzDDiZoywbSHCs66PX15j
1 parent 878dc60 commit b6a4d62

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ dataset/out/
2525
# local env & agent-session artifacts
2626
.env
2727
.env.*
28+
29+
# Wrangler's local state/cache, written beside each site's wrangler.jsonc by
30+
# `wrangler deploy` / `wrangler dev`. The workspace .gitignore files that used to
31+
# ignore Vercel's `.vercel` equivalent were removed in the Cloudflare migration;
32+
# this is the replacement, kept at the root so it covers both sites.
33+
.wrangler/
2834
.claude/settings.local.json
2935
.superpowers/
3036
.agents/

0 commit comments

Comments
 (0)