Installs Storybook 10.4 in apps/app/ as a component-development and autodoc tool. Configures viteFinal with all seven SPA aliases so stories resolve imports identically to the dev/build pipeline. preview.ts reuses @/plugins/primevue's installPrimeVue() so Storybook stays in lock-step with main.ts whenever the PrimeVue config changes. Only the addons we need are wired: addon-docs (autodocs) and addon-a11y (axe-core checks). addon-interactions is intentionally omitted — interaction testing stays in Playwright CT per the testing architecture. Seed stories: PrimeVue Button (Primary/Secondary/Danger), Tailwind utility box, and FormField (Default/WithError/Disabled) wrapped in @primevue/forms Form + Zod resolver. Adds make storybook target alongside make app / make docs.
87 lines
1.6 KiB
Plaintext
87 lines
1.6 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
public/build/
|
|
public/hot
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
storage/logs/*
|
|
!storage/logs/.gitkeep
|
|
|
|
# Laravel
|
|
bootstrap/cache/*
|
|
!bootstrap/cache/.gitkeep
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
|
|
# Testing
|
|
.phpunit.result.cache
|
|
coverage/
|
|
|
|
# Playwright runtime artifacts (test-results, blob-report, html-report,
|
|
# .cache build dir, playwright traces). __screenshots__/ is committed
|
|
# (via Git LFS, see .gitattributes).
|
|
apps/app/test-results/
|
|
apps/app/playwright-report/
|
|
apps/app/blob-report/
|
|
apps/app/playwright/.cache/
|
|
|
|
# Playwright e2e seed-data fixture file — written by E2EBaselineSeeder
|
|
# during globalSetup, never source-of-truth.
|
|
api/storage/app/e2e-fixtures.json
|
|
|
|
# Misc
|
|
*.pem
|
|
.cache/
|
|
|
|
# Design / assets temp files (e.g. Illustrator)
|
|
resources/**/*.tmp
|
|
resources/**/design-files/
|
|
|
|
# VitePress
|
|
docs/.vitepress/dist
|
|
docs/.vitepress/cache
|
|
|
|
# Local deploy wrapper (per-developer SSH alias)
|
|
/run-deploy-from-local.sh
|
|
!/run-deploy-from-local.example.sh
|
|
|
|
# Claude Project Knowledge sync output (regenerated by scripts/sync-claude-docs.sh)
|
|
.claude-sync/
|
|
|
|
# Claude Code runtime state
|
|
.claude/*.lock
|
|
|
|
# GlitchTip
|
|
docker/glitchtip/.env
|
|
backups/
|
|
|
|
# WS-7 RFC §3.5: Vite sourcemaps are uploaded to GlitchTip and stripped
|
|
# from dist/ before deploy. Defensive exclusion in case dist/ is ever
|
|
# committed by mistake (it's already covered by `dist/` above).
|
|
apps/app/dist/**/*.map
|
|
|
|
*storybook.log
|
|
storybook-static
|