mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 14:55:43 +00:00
8593858f3a
* fix(whats-new): generate release-notes bundle before dev startup Fresh clones failed Vite import analysis because releaseNotesBundle.ts was gitignored and dev/tauri:dev did not run prebuild. Commit a sliced stub and hook prebuild into dev scripts. * docs: CHANGELOG PR #1060 for dev startup bundle fix * fix(whats-new): keep release-notes bundle gitignored Drop the committed generated slice — it would churn on every CHANGELOG/WHATS_NEW edit. Prebuild before dev/tauri:dev is enough.
70 lines
1.0 KiB
Plaintext
70 lines
1.0 KiB
Plaintext
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Environment variables (API keys)
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Node
|
|
node_modules
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Tauri
|
|
src-tauri/target/
|
|
src-tauri/gen/
|
|
src-tauri/lcov.info
|
|
|
|
# Frontend test coverage
|
|
coverage/
|
|
|
|
# Generated at build/test/dev time (scripts/generate-release-notes-bundle.mjs)
|
|
src/generated/
|
|
|
|
# Documentation
|
|
CLAUDE.md
|
|
|
|
# Local commit-instructions for agents (never commit)
|
|
to_commit.md
|
|
|
|
# Claude Code memory (local only)
|
|
memory/
|
|
|
|
# Local scratchpad / notes (not committed)
|
|
tmp/
|
|
|
|
# Third-party clones for local research (not committed)
|
|
research/
|
|
|
|
# Nix build output symlink
|
|
result
|
|
result-*
|
|
|
|
# Local incremental cargo (nix develop; not used by flake — see nix/psysonic.nix cleanSource)
|
|
.build-local/
|
|
|
|
# Local Nix helpers (not in repo — optional; use `nix develop` / flake without them)
|
|
dev.sh
|
|
shell.nix
|
|
prod.sh
|
|
tsconfig.tsbuildinfo
|