This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.1.3
->3.0.0
Release Notes
developit/mitt
v3.0.0
Compare Source
Mitt 3.0 adds a couple nice new features.
1. Remove all handlers of a type:
Calling
.off("type")
with no handler argument now removes all listeners of that type (#123, #124, #129 - thanks @sealice!).2. New, stronger typing:
It's now possible to define explicit types for events and their arguments (#114, thanks @iyegoroff & @deskoh):
3. Package Exports:
As of 3.0.0, the
mitt
package now uses Package Exports. This shouldn't change usage or anything, it just means you're more likely to end up using the ES Module version of Mitt when running in Node.v2.1.0
Compare Source
Mitt 2 is out of preview!
It's written in TypeScript and ships type definitions (#107, thanks again @jackfranklin!)
Event handlers are now stored in a Map instead of an Object.
The event handler Map is now exposed as
.all
: (#105, thanks @jaylinski!)v2.0.1
Compare Source
This patch update for the 2.0 prerelease fixes missing type exports (#101).
It also reduces size and improves performance (#100).
v2.0.0
Compare Source
Possible Breaking Change:
mitt()
previously accepted an optional Object "event map" argument. In 2.0.0, events are stored in an actual JavaScript Map rather than as properties on a plain object:Now the good news: if you weren't using this argument,
mitt@2
isn't a breaking change for you.Also, Mitt is now written in TypeScript! Huge thanks to @jackfranklin for doing all the work including setting up a much nicer build toolchain.
v1.2.0
Compare Source
It's Mitt's first release since 2017! That's the thing about a 200 byte library - there's not a lot of code here to necessitate constant updates. Take it as a sign of stability.
This release is primarily an improvement to the TypeScript definition we ship with Mitt:
mitt()
with or withoutnew
in TypeScript (#60/#67 - thanks @davidkpiano).on('*', handler)
now has types that pass the correct(event, data)
arguments (#76, thanks @zbuttram)all
parameter, which lets you pass your own mapping of handler Arrays to Mitt, now has correct types (#73, thanks @jesperzach)Configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.