mirror of
https://github.com/Xevion/Pac-Man.git
synced 2026-01-31 10:25:06 -06:00
- Replace Vike+React with SvelteKit for simpler SSR and routing - Update WASM build output paths from public/ to static/ - Add wasm-opt integration for WASM size optimization - Streamline tooling: remove ESLint, Prettier configs (use defaults) - Move build.rs to pacman-server/ (frontend no longer needs it)
45 lines
592 B
Plaintext
45 lines
592 B
Plaintext
# IDE, Other files
|
|
.vscode
|
|
.idea
|
|
.claude/
|
|
rust-sdl2-emscripten/
|
|
|
|
# Build files
|
|
target/
|
|
dist/
|
|
emsdk/
|
|
node_modules/
|
|
|
|
# Package manager lockfiles (bun only)
|
|
pnpm-lock.yaml
|
|
yarn.lock
|
|
package-lock.json
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Emscripten build outputs (generated by cargo build)
|
|
web/static/pacman.data
|
|
web/static/pacman.js
|
|
web/static/pacman.wasm
|
|
web/static/pacman.wasm.map
|
|
|
|
# Site build files
|
|
tailwindcss-*
|
|
pacman/assets/site/build.css
|
|
|
|
# Coverage reports
|
|
lcov.info
|
|
codecov.json
|
|
coverage.html
|
|
|
|
# Profiling output
|
|
flamegraph.svg
|
|
/profile.*
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Sensitive
|
|
*.env
|