Liblucy Versions Save

Core Lucy compiler

v0.5.8

2 years ago

v0.5.7

2 years ago

v0.5.6

2 years ago

v0.5.5

2 years ago

v0.5.4

2 years ago

v0.5.3

2 years ago

v0.5.2

2 years ago

v0.5.1

2 years ago

v0.5.0

2 years ago

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

2 years ago

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
}