mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* perf(protocol): generate inbound ws validators * perf(client): use generated ws validation * docs(protocol): document generated validation * fix(protocol): make validator generation source-only * test(protocol): cover explicit provider model normalization * fix(protocol): preserve inbound compat defaults * fix(protocol): make validator import rewrite portable * fix(protocol): harden validation safety checks * fix(protocol): guard generated validator boundaries * fix(protocol): normalize legacy inbound defaults * fix(protocol): simplify generated validation safety net * fix(protocol): keep cold typecheck source-only * fix(protocol): encapsulate validator codegen * fix(protocol): bootstrap source-alias typechecks * fix(app): keep source aliases out of bundler config * fix(protocol): harden validator codegen packaging * fix(protocol): own zod-aot patches in generator * fix(protocol): trim validator safety net * fix(client): normalize provider updates before dispatch * fix(protocol): keep validator generation out of install
93 lines
1.2 KiB
Plaintext
93 lines
1.2 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build outputs
|
|
build/
|
|
dist/
|
|
.next/
|
|
out/
|
|
result
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.test
|
|
.env.local
|
|
.env.test.local
|
|
.env*.local
|
|
.dev.vars
|
|
**/.dev.vars
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
tsconfig.tsbuildinfo
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-*
|
|
|
|
# Testing
|
|
coverage/
|
|
|
|
# Playwright
|
|
test-results/
|
|
**/test-results/
|
|
|
|
# Vercel
|
|
.vercel/
|
|
|
|
# Expo
|
|
.expo/
|
|
|
|
# Misc
|
|
*.pem
|
|
.vercel
|
|
|
|
# Local Claude configuration
|
|
CLAUDE.local.md
|
|
|
|
# Task CLI
|
|
.tasks/
|
|
|
|
.debug.conversations/
|
|
.debug/
|
|
.dev/
|
|
.paseo/
|
|
.wrangler/
|
|
**/.wrangler/
|
|
**/.tanstack/
|
|
|
|
# Local agent/tooling artifacts (do not commit)
|
|
PLAN.md
|
|
.valknut/
|
|
valknut-report.html/
|
|
valknut-report.json/
|
|
**/.playwright-mcp/
|
|
**/.paseo-provider-history/
|
|
.claude/settings.local.json
|
|
**/.claude/settings.local.json
|
|
.claude/scheduled_tasks.lock
|
|
.claude/worktrees/
|
|
.plans/
|
|
packages/server/src/server/fixtures/dictation/dictation-debug-largest.wav
|
|
packages/server/src/server/fixtures/dictation/dictation-debug-largest.transcript.txt
|
|
packages/protocol/src/generated/validation/*.aot.ts
|
|
|
|
/artifacts
|
|
packages/desktop/.cache/
|
|
packages/desktop/src-tauri/resources/managed-runtime/
|
|
app.json
|