Add npm cache directories to .gitignore to prevent accidental commits

This commit is contained in:
Johnathan Walker 2025-06-15 22:22:30 -04:00
parent cc51242527
commit 3c6649f224

66
.gitignore vendored
View file

@ -1,31 +1,35 @@
.vscode/
.idea/
node_modules/
package-lock.json
code_records/
scratch.js
bots/**/action-code/**
bots/**/
keys.json
services/viaproxy/jars/**
services/viaproxy/logs/**
services/viaproxy/plugins/**
services/viaproxy/ViaLoader/**
services/viaproxy/saves.json
services/viaproxy/viaproxy.yml
tmp/
wandb/
experiments/
andy_*.json
jill_*.json
src/models/logs/*
server_data/*
results/*
tasks/construction_tasks/test_multiagent_construction_tasks.json
tasks/construction_tasks/train_multiagent_construction_tasks.json
tasks/construction_tasks/test/**
tasks/construction_tasks/train/**
server_data*
**/.DS_Store
.venv/
tasks/__pycache__/
.vscode/
.idea/
node_modules/
package-lock.json
code_records/
scratch.js
bots/**/action-code/**
bots/**/
keys.json
services/viaproxy/jars/**
services/viaproxy/logs/**
services/viaproxy/plugins/**
services/viaproxy/ViaLoader/**
services/viaproxy/saves.json
services/viaproxy/viaproxy.yml
tmp/
wandb/
experiments/
andy_*.json
jill_*.json
src/models/logs/*
server_data/*
results/*
tasks/construction_tasks/test_multiagent_construction_tasks.json
tasks/construction_tasks/train_multiagent_construction_tasks.json
tasks/construction_tasks/test/**
tasks/construction_tasks/train/**
server_data*
**/.DS_Store
.venv/
tasks/__pycache__/
# npm cache
.npm-cache/
.npm/