This repository was archived by the owner on Dec 12, 2023. It is now read-only.
Releases: lucydsl/liblucy
Releases · lucydsl/liblucy
v0.5.8
v0.5.7
0.5.7
v0.5.6
0.5.6
v0.5.5
0.5.5
v0.5.4
0.5.4
v0.5.3
0.5.3
v0.5.2
0.5.2
v0.5.1
0.5.1
v0.5.0
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
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
}