Skip to content

0.3.0

Compare
Choose a tag to compare
@ddj231 ddj231 released this 09 Jan 22:58
· 139 commits to master since this release

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.
  1. RunHandel and StopHandel are no longer global functions and must be accessed as follows.
Handel.RunHandel(someHandelCode);
Handel.StopHandel();
  1. 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);