mirror of
https://github.com/aljazceru/claude-code-viewer.git
synced 2025-12-29 11:14:21 +01:00
- Add 45 PNG snapshots covering all pages and UI states - Include device variations (desktop, mobile, tablet) for each state - Enable visual diff comparison on GitHub for UI changes - Remove snapshots from .gitignore to include in version control Snapshot coverage: - Root page: 3 snapshots - Projects page: 6 snapshots (default, empty states) - Project detail: 9 snapshots (default, filters-expanded, new-chat-modal) - Session detail: 18 snapshots (default, sidebar-open across 3 session UUIDs) - Error pages: 9 snapshots (404, invalid-project, invalid-session) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
49 lines
547 B
Plaintext
49 lines
547 B
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.js
|
|
.yarn/install-state.gz
|
|
|
|
# testing
|
|
/coverage
|
|
/test-results/
|
|
/playwright-report/
|
|
/blob-report/
|
|
/playwright/.cache/
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# local env files
|
|
.env*.local
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# dist
|
|
dist/*
|
|
!dist/index.js
|
|
# dist/standalone/node_modules
|
|
|
|
# playwright
|
|
.user-data/
|