mirror of
https://github.com/litruv/AudioSort.git
synced 2026-07-24 02:36:01 +10:00
- Updated .gitignore to include additional files and directories for better exclusion. - Modified package.json to add new build scripts and electron-builder configuration. - Refactored MainApp.ts for improved IPC handler management and code formatting. - Cleaned up LibraryService.ts by removing unnecessary logging and comments. - Adjusted App.tsx and FileList.tsx for code clarity and consistency. - Removed redundant console logs in TagEditor.tsx and CategoryUIState.ts. - Updated tsconfig files for module resolution consistency.
67 lines
729 B
Plaintext
67 lines
729 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
.pnpm-store/
|
|
|
|
# Build output
|
|
dist/
|
|
out/
|
|
release/
|
|
*.tsbuildinfo
|
|
|
|
# Electron builder
|
|
builder-debug.yml
|
|
builder-effective-config.yaml
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
lerna-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# IDE & Editor
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.c9/
|
|
*.launch
|
|
.settings/
|
|
*.sublime-workspace
|
|
|
|
# Test data & databases
|
|
test-data/
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# Environment & Config
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.npmrc
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|