Files
WRNexusJS/UPGRADE-0.6.0.md
T
2026-08-01 01:09:58 +05:30

874 B

Upgrade to WRNexusJS 0.6.0

  1. Commit or back up the existing application.
  2. Install the v0.6 workspace packages.
  3. Run a dry migration:
wrnexus update --version=0.6.0 --dry-run --report
  1. Review ambiguous function runtimes and unresolved imports.
  2. Apply the migration:
wrnexus update --version=0.6.0 --report
  1. To adopt strict imports immediately:
wrnexus update --version=0.6.0 --explicit-imports --report
  1. Run bun install, bun run validate:0.6, and bun run check.

Existing applications receive compatible defaults. Legacy $emit, @event, event.detail, implicit component discovery, string layouts, untyped props/state, and unmodified functions remain accepted temporarily. New code should use output.name(payload), payload, explicit imports, typed declarations, and runtime modifiers.