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

Releases: lucydsl/liblucy

v0.5.8

01 Apr 12:34
Compare
Choose a tag to compare

v0.5.7

01 Apr 12:34
Compare
Choose a tag to compare
0.5.7

v0.5.6

20 Oct 00:04
Compare
Choose a tag to compare
0.5.6

v0.5.5

19 Oct 23:43
Compare
Choose a tag to compare
0.5.5

v0.5.4

19 Oct 11:28
Compare
Choose a tag to compare
0.5.4

v0.5.3

18 Oct 21:56
Compare
Choose a tag to compare
0.5.3

v0.5.2

18 Oct 14:16
Compare
Choose a tag to compare
0.5.2

v0.5.1

18 Oct 13:04
Compare
Choose a tag to compare
0.5.1

v0.5.0

15 Oct 11:59
Compare
Choose a tag to compare

This release contains a breaking change the JavaScript API. For cli users there are no breaking changes.

New JavaScript API signature

The return value of compileXstate is now an object include two properties, { js, dts }. The js property being a string of JavaScript, and dts being a string of TypeScript definitions.

Note that dts is only populated if you provide the option: { dts: true }.

v0.4.1

14 Oct 12:01
Compare
Choose a tag to compare

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
}