68 lines
965 B
Plaintext
68 lines
965 B
Plaintext
# build output
|
|
dist/
|
|
|
|
# generated types
|
|
.astro/
|
|
|
|
/themes
|
|
|
|
# dependencies
|
|
node_modules
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
.dev.vars
|
|
|
|
# database files
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
*.sqlite
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
|
|
# uploads & EmDash data
|
|
uploads/
|
|
.emdash/
|
|
!packages/core/tests/e2e/fixture/.emdash/
|
|
!packages/core/tests/integration/fixture/.emdash/
|
|
!e2e/fixture/.emdash/
|
|
!templates/*/.emdash/seed.json
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
# jetbrains setting folder
|
|
.idea/
|
|
.wrangler
|
|
|
|
# Playwright E2E testing
|
|
playwright-report/
|
|
test-results/
|
|
playwright/.cache/
|
|
|
|
# Debug screenshots
|
|
debug-*.png
|
|
|
|
# Template screenshots - only keep latest/, ignore dated folders
|
|
assets/templates/*/[0-9]*
|
|
|
|
# Vitest browser-mode failure screenshots
|
|
__screenshots__/
|
|
|
|
# AI review artifacts
|
|
*-review.md
|
|
|
|
.chainlink/
|
|
|
|
.emdash-bundle-tmp
|
|
|
|
# Downloaded test data (fetched on demand in CI)
|
|
examples/wp-theme-unit-test/ |