Add .gitignore and package-lock.json files
- Add comprehensive .gitignore for binaries, node_modules, and build outputs - Add package-lock.json for cmd/acb-indexer and worker-api - Ensures reproducible builds with exact dependency versions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
257eb32641
commit
4b1966a839
3 changed files with 5145 additions and 0 deletions
32
.gitignore
vendored
Normal file
32
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Binaries
|
||||
acb-local
|
||||
acb-mapgen
|
||||
acb-worker
|
||||
|
||||
# Node modules
|
||||
node_modules/
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
*.js.map
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Test outputs
|
||||
replay.json
|
||||
|
||||
# Marathon instructions (local only)
|
||||
.marathon/
|
||||
2232
cmd/acb-indexer/package-lock.json
generated
Normal file
2232
cmd/acb-indexer/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
2881
worker-api/package-lock.json
generated
Normal file
2881
worker-api/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue