- Remove 541MB of committed Electron build artifacts from git - Add .gitignore patterns for release/, *.apk, *.aab, *.ipa - Add GitHub Actions workflow for building showcase releases (manual dispatch with version input, builds Linux desktop + Android APK, creates GitHub Release with attached artifacts) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
35 lines
277 B
Plaintext
35 lines
277 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
*.tsbuildinfo
|
|
|
|
# Turbo cache
|
|
.turbo/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Env
|
|
.env
|
|
.env.local
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Showcase build artifacts
|
|
release/
|
|
*.apk
|
|
*.aab
|
|
*.ipa
|
|
*.xcarchive
|