v2.0.0
What's Changed
- build(deps): bump ejs from 3.1.6 to 3.1.7 by @dependabot in #3
- build(deps): bump async from 2.6.3 to 2.6.4 by @dependabot in #4
- Feat/simpler dispatch by @macoley in #5
Breaking changes
New API for event dispatching.
✖️ old one:
const dispatch = useEvent()
dispatch('onBobPress', 'hello')✅ new one:
const { onBobPress } = useEvent()
onBobPress('hello')Full Changelog: v1.1.0...v2.0.0