Skip to content

Releases: statelyai/xstate-tools

@xstate/[email protected]

10 Mar 14:02
643e16c
Compare
Choose a tag to compare

Patch Changes

  • #99 5332727 Thanks @mattpocock! - Fixed an issue where property keys passed an incorrect type would silently fail

  • #100 335f349 Thanks @mattpocock! - Fixed a bug where inline guards were not being picked up in non-root events.

@xstate/[email protected]

10 Mar 14:02
643e16c
Compare
Choose a tag to compare

Patch Changes

@xstate/[email protected]

07 Mar 09:25
6c47ee3
Compare
Choose a tag to compare

Patch Changes

  • #94 b648b8e Thanks @Andarist! - Reduced success logs to only be printed for files that actually contain machines.

[email protected]

03 Mar 17:07
791c2a7
Compare
Choose a tag to compare

Patch Changes

  • #84 a73fce8 Thanks @Andarist! - Fixed a bug where transition targets would not be parsed correctly if they were declared using a template literal.

  • Updated dependencies []:

[email protected]

03 Mar 15:24
9bf1216
Compare
Choose a tag to compare

Patch Changes

  • #82 e49beb2 Thanks @mattpocock! - Fixed a bug where prettier was not found in the server bundle, causing an irrecoverable error on startup.

[email protected]

03 Mar 14:03
a5e8e61
Compare
Choose a tag to compare

Minor Changes

  • a1c9de6 Thanks @mattpocock! - Allowed for parsing and rewriting inline implementations in the VSCode extension. This allows you to use either named actions (which were already supported):

    createMachine({
      entry: ["sayHello"]
    });

    Or inline actions:

    createMachine({
      entry: [
        () => {
          console.log("Hello!");
        }
      ]
    });

    Both can now be handled in the VSCode extension. This is true for inline actions, services and guards.

Patch Changes

@xstate/[email protected]

03 Mar 17:07
791c2a7
Compare
Choose a tag to compare

Patch Changes

@xstate/[email protected]

03 Mar 14:03
a5e8e61
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@xstate/[email protected]

03 Mar 17:07
791c2a7
Compare
Choose a tag to compare

Patch Changes

  • #84 a73fce8 Thanks @Andarist! - Fixed a bug where transition targets would not be parsed correctly if they were declared using a template literal.

@xstate/[email protected]

03 Mar 14:03
a5e8e61
Compare
Choose a tag to compare

Minor Changes

  • #68 a3b874b Thanks @mattpocock! - Added logic for parsing inline actions, services and guards. This allows for users of this package to parse and edit machines containing inline implementations predictably.

Patch Changes

  • #69 2210d4b Thanks @mattpocock! - Fixed issue where tags appeared to be deleted when changes were made in VSCode.