- Reduce RiverRun game height from 100vh to 75vh for better screen fit - Reduce AdventureReader game height from 100vh to 75vh - Fix Mario level number display (was showing currentLevel + 1 twice) - Updated HUD level display in Renderer.js - Updated finish line flag level display in Renderer.js - Add portable setup files and documentation - Add new game modules: SentenceInvaders, ThematicQuestions - Add new content: wte2 book, sbs chapters 2-3, wte2-2 chapter - Update various game modules for improved compatibility 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
113 lines
1.3 KiB
Plaintext
113 lines
1.3 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Portable Node.js (for USB deployment)
|
|
nodejs-portable/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.tgz
|
|
*.tar.gz
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Audio files (can be large)
|
|
audio/*.mp3
|
|
audio/*.wav
|
|
audio/*.ogg
|
|
audio/*.m4a
|
|
|
|
# Image files (can be large)
|
|
images/*.jpg
|
|
images/*.jpeg
|
|
images/*.png
|
|
images/*.gif
|
|
images/*.bmp
|
|
images/*.svg
|
|
|
|
# Video files
|
|
videos/*.mp4
|
|
videos/*.avi
|
|
videos/*.mov
|
|
videos/*.wmv
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.parcel-cache/
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
|
|
# nyc test coverage
|
|
.nyc_output
|
|
|
|
# ESLint cache
|
|
.eslintcache
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# User-specific content that shouldn't be shared
|
|
user-content/
|
|
personal-notes.txt
|
|
config/user-settings.json
|
|
|
|
# AI models and large datasets (if any)
|
|
models/
|
|
datasets/
|
|
*.model
|
|
*.dat |