Skip to content

v0.6.0

Compare
Choose a tag to compare
@leoasis leoasis released this 01 May 18:17
· 47 commits to master since this release
  • Use prop-types package to avoid warnings with react 15.5. Drop support for react < 15 (#28 Thanks @vmasto!)
  • Use babel 6 to build the library. If requiring this library using require, you'll need to access the default propertly, like this:
// Don't do this:
// var Sound = require('react-sound');

// Instead, do this:
var Sound = require('react-sound').default;