Using default exports for single packages are deprecated, so instead of:
import TimeSignature from "@tonaljs/time-signature";
You should do this:
import * as TimeSignature from "@tonaljs/time-signature";
The same for all modules.
- Named type was renamed to NamedPitch. Add old export for backwards compatibility
-
- fix time signature parsing
- add support for irrational time signatures
- add option
assumePerfectFifth
toChord.detect
function
- Unify package versions
- fix npm publish problem
- b120fc42: Publish tonal in
tonal
package. So usenpm install tonal
instead ofnpm install @tonaljs/tonal
- fix memory leak
- Bug fixing