Skip to Content
CLI Referencetynd validate

tynd validate

tynd validate tynd validate --json

Runs two checks:

  1. Config schema — typechecks tynd.config.ts via valibot . Invalid shape fails fast with the offending field name.
  2. Host binary — confirms tynd-full / tynd-lite is discoverable via the CLI’s lookup order:
    • workspace target/release/
    • target/debug/
    • node_modules/@tynd/host/bin/<plat>-<arch>/
    • system PATH

Flags

FlagEffect
--cwd <dir>Project directory
--jsonMachine-readable output

Global flags: --verbose, --quiet.

Example output

Pass:

✓ tynd.config.ts schema valid ✓ tynd-lite found at node_modules/@tynd/host/bin/windows-x64/tynd-lite.exe

Fail (schema):

✗ tynd.config.ts: ∟ bundle.identifier: required

Fail (binary):

✗ tynd-lite not found. Try: bun install
Last updated on