- Add examples/basic-app/app/api/directory.ts and app/pages/api-block-demo.wrn as the end-to-end worked example for typed api blocks (Task 6). - Add **/*.generated.api-checks.ts to .prettierignore: this generated file must match the CLI's raw output byte-for-byte for check:generated-types, and prettier was reformatting it. - Fix packages/csr/test/api-call.test.ts: no-unsafe-function-type lint error from the raw Function type, uncovered while running the full gate. - Rebuild editors/vscode bundles (packages/compiler and packages/syntax changed in Tasks 1-5). - Regenerate docs/public-api-0.8.json (additive: isIdentPart, isIdentStart, skipLiteralOrComment newly exported from packages/syntax). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
35 lines
704 B
Plaintext
35 lines
704 B
Plaintext
node_modules/
|
|
dist/
|
|
**/dist/
|
|
**/.wrnexus/**
|
|
**/.wrnexus-*/**
|
|
.publish/
|
|
**/.wrnfw/
|
|
coverage/
|
|
bun.lock
|
|
bun.lockb
|
|
*.log
|
|
|
|
# Generated code (queries.gen.ts, routes.gen.ts, etc.)
|
|
**/*.gen.ts
|
|
**/*.generated.d.ts
|
|
**/*.generated.api-checks.ts
|
|
|
|
# Bundled .wrn compiler for the VS Code extension (generated)
|
|
editors/vscode/src/compiler.cjs
|
|
editors/vscode/src/language-server.cjs
|
|
editors/vscode/src/extension.bundle.cjs
|
|
docs/public-api-0.8.json
|
|
docs/ui-visual-contract-0.8.json
|
|
*.svg
|
|
**/.vscodeignore
|
|
|
|
# Local focused typecheck helpers (never part of a release)
|
|
focus-shims.d.ts
|
|
**/focus-shims.d.ts
|
|
tsconfig.focus.json
|
|
**/tsconfig.focus.json
|
|
|
|
# SDD scratch workspace (git-ignored controller artifacts)
|
|
.superpowers/
|