mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 19:16:00 -04:00
- Add `recharts` and `motion` deps; register `@evilcharts` registry in `components.json` - Vendor evilcharts primitives (`AreaChart`, `Chart`, `Dot`, `EvilBrush`, `Legend`, `Tooltip`, `Background`) under `components/evilcharts/` - Add `ActivityChart` wrapper in `components/stats/` that uses the evilcharts `AreaChart` for the daily-run sparkline on `/stats`; replaces the hand-rolled inline-SVG `SparkAreaChart` (deleted) - Update `stats.tsx` to render `ActivityChart` instead of the removed component - Tighten `.gitignore`: add `.vercel`, collapse `.env.local` / `.env.*.local` to `.env*` with a `!.env.example` carve-out
37 lines
372 B
Plaintext
37 lines
372 B
Plaintext
node_modules/
|
|
dist/
|
|
.output/
|
|
.vercel/
|
|
.turbo/
|
|
*.tsbuildinfo
|
|
.tanstack/
|
|
.source/
|
|
.vercel
|
|
|
|
# IDE
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
!.vscode/settings.json
|
|
.idea/
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Secrets
|
|
.env*
|
|
!.env.example
|
|
|
|
# Test artifacts
|
|
coverage/
|
|
__snapshots__/.tmp/
|
|
|
|
# misc
|
|
apps/web/public/registry/
|
|
apps/web/public/schema.json
|