chore(release): 3.1.1

Diff: https://github.com/socketio/emitter/compare/4.0.0...3.1.1
This commit is contained in:
Damien Arrachequesne
2024-04-10 16:51:42 +02:00
parent ba6b56de2c
commit c68478dcf8
3 changed files with 15 additions and 6 deletions

View File

@@ -1,13 +1,20 @@
# History
- [**4.0.0**](#400-2022-11-22) (Nov 2022)
- [3.1.0](#310-2022-04-17) (Apr 2022)
- [**3.0.0**](#300-2021-10-14) (Oct 2021)
| Version | Date |
|------------------------------|--------------|
| [3.1.1](#311-2024-04-10) | April 2024 |
| [**4.0.0**](#400-2022-11-22) | October 2021 |
| [3.1.0](#310-2022-04-17) | April 2022 |
| [**3.0.0**](#300-2021-10-14) | October 2021 |
# Release notes
## [3.1.1](https://github.com/socketio/emitter/compare/4.0.0...3.1.1) (2024-04-10)
This release contains a rework of the dual CommonJS/ES packages. Instead of relying on the `.mjs` file extension, which causes [some problems](https://github.com/socketio/socket.io-client/issues/1598), we will use two `package.json` files, one with `"type": "commonjs"` and the other with `"type": "module"`.
## [4.0.0](https://github.com/socketio/emitter/compare/3.1.0...4.0.0) (2022-11-22)
### BREAKING CHANGES

View File

@@ -2,6 +2,8 @@
Event emitter component.
This project is a fork of the [`component-emitter`](https://github.com/sindresorhus/component-emitter) project, with [Socket.IO](https://socket.io/)-specific TypeScript typings.
## Installation
```

View File

@@ -1,7 +1,7 @@
{
"name": "@socket.io/component-emitter",
"description": "Event emitter",
"version": "4.0.0",
"version": "3.1.1",
"license": "MIT",
"devDependencies": {
"mocha": "*",