0.3.0
Breaking changes
- Handel (v0.3.0 and up) is now bundled with Webpack. This has caused slight modifications to the install and import of Handel.
- RunHandel and StopHandel are no longer global functions and must be accessed as follows.
Handel.RunHandel(someHandelCode);
Handel.StopHandel();
- And Tonejs should no longer be added as a separate script tag or installed separately.
New Features
- Handel now compiles to Midi. To compile to midi pass in a config object with outputMidi set to true, to the RunHandel function
const config = {outputMidi: true};
Handel.RunHandel(`start play E4 for 1b finish`, config);