v4.0.0
🔗 Links
🔬 http://sound.pixijs.download/v4.0.0/examples/index.html
📖 http://sound.pixijs.download/v4.0.0/docs/index.html
💾 http://sound.pixijs.download/v4.0.0/pixi-sound.js
🔥 Breaking Changes
- Package name changed from
pixi-sound
to@pixi/sound
- No more default export for CommonJS and ESM bundles. For example:
// v3 and before
import sound from 'pixi-sound';
// v4+, now becomes
import { sound } from '@pixi/sound';
✏️ Changed
- Now supports PixiJS v6, with proper package typings (still works with v5)
- TypeScript declarations are now generated from src
🐛 Fixed
- Fixes unhandledRejection by
decodeAudioData
(#143) @windyrain