
- Add predev script to build executables before starting dev server - Configure Tauri to include claude-code as external binary - Reorganize Tauri command handlers with clear section comments for better maintainability - Add bun build temporary files to .gitignore These changes enable proper Claude binary integration and ensure executables are built before development. Fixes #136
35 lines
373 B
Plaintext
35 lines
373 B
Plaintext
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
node_modules
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
*.bun-build
|
|
|
|
# Tauri binaries (built executables)
|
|
src-tauri/binaries/
|
|
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
.DS_Store
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
temp_lib/
|
|
|
|
.cursor/
|
|
AGENTS.md
|
|
CLAUDE.md
|
|
*_TASK.md
|