- Standardize on bun: remove package-lock.json, add packageManager field, gitignore non-bun lockfiles, fix stray npm install in android:build:clean - Remove stale build logs and empty dirs (src-tauri/plugins, docs/tickets) - Move android-dev.sh into scripts/ - Consolidate root docs into docs/ (docker/builder under docs/build/); move the architecture overview to docs/architecture/README.md - Extract Requirements Specification from README into docs/requirements.md and slim README down to a project intro + docs index - Fix internal references to the moved files
61 lines
750 B
Plaintext
61 lines
750 B
Plaintext
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node.js
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Use bun (see packageManager in package.json); ignore other package managers' lockfiles
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Build output
|
|
/build
|
|
/dist
|
|
/.svelte-kit
|
|
/package
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Testing
|
|
coverage
|
|
.nyc_output
|
|
*.lcov
|
|
|
|
# WebdriverIO E2E tests
|
|
e2e/logs/
|
|
e2e/screenshots/
|
|
wdio-*.log
|
|
|
|
# Vitest
|
|
.vitest
|
|
|
|
# Vite
|
|
vite.config.js.timestamp-*
|
|
vite.config.ts.timestamp-*
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Android signing keystore (NEVER commit)
|
|
android-keystore/
|
|
|
|
# Local machine-specific Android NDK toolchain paths (do not commit)
|
|
src-tauri/.cargo/config.toml
|