Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

v0.4.1

Compare
Choose a tag to compare
@github-actions github-actions released this 14 Oct 12:01
· 21 commits to main since this release

Targeting nested states

This release adds support for targeting nested states in a transitions destination:

initial state idle {
  fetch => fetching

  machine idling {
    initial state noError {}

    state errored {}
  }
}

state fetching {
  reportError => idle.errored
}