-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (45 loc) · 1023 Bytes
/
.gitignore
File metadata and controls
57 lines (45 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Build output
dist/
# JS deps
node_modules/
# agents
.claude
# Python env
.venv/
__pycache__/
*.py[cod]
*.egg-info/
# Credentials
.env
# Large geo files (use skills/s3/ to upload these)
*.gpkg
*.geojson
*.tif
*.tiff
*.geotiff
*.mbtiles
*.pmtiles
# Rust build output
target/
# Font TTF sources (download with: uv run skills/download_fonts.py)
data/fonts/files/
# Generated PBF glyphs (built from TTFs, uploaded to S3 — not committed)
*.pbf
# Generated sprite sheets (built by build_sprites.py, uploaded to S3 — not committed)
packages/theme-core/assets/sprites/generated/
# Pattern SVGs (generated by npm run build:patterns — not committed)
packages/theme-core/assets/sprites/patterns/
# Library build output is committed so jsDelivr GitHub CDN can serve it.
# Use 'npm run release' — release-it builds and commits dist automatically before tagging.
!packages/theme-core/dist/
!packages/theme-core/dist/**
# Editor swap / backup files
*.swp
*.swo
*~
# Logs
*.log
npm-debug.log*
# OS
.DS_Store
Thumbs.db