github statelyai/xstate @xstate/graph@2.0.0-beta.5

pre-release12 months ago

Patch Changes

  • #4308 af032db12 Thanks @davidkpiano! - Traversing state machines that have delayed transitions will now work as expected:

    const machine = createMachine({
      initial: 'a',
      states: {
        a: {
          after: {
            1000: 'b'
          }
        },
        b: {}
      }
    });
    
    const paths = getShortestPaths(machine); // works

Don't miss a new xstate release

NewReleases is sending notifications on new releases.