evnty 4.4.1 → 4.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Evnty
|
|
2
2
|
|
|
3
|
+
[![Coverage Status][codecov-image]][codecov-url]
|
|
4
|
+
[![Github Build Status][github-image]][github-url]
|
|
5
|
+
[![NPM version][npm-image]][npm-url]
|
|
6
|
+
[![Downloads][downloads-image]][npm-url]
|
|
7
|
+
[![Snyk][snyk-image]][snyk-url]
|
|
8
|
+
|
|
3
9
|
0-dependency, high-performance, reactive event handling library optimized for both browser and Node.js environments. This library introduces a robust and type-safe abstraction for handling events, reducing boilerplate and increasing code maintainability.
|
|
4
10
|
|
|
5
11
|
<div align="center">
|
|
@@ -9,12 +15,6 @@
|
|
|
9
15
|
<br>
|
|
10
16
|
<br>
|
|
11
17
|
|
|
12
|
-
[![Coverage Status][codecov-image]][codecov-url]
|
|
13
|
-
[![Github Build Status][github-image]][github-url]
|
|
14
|
-
[![NPM version][npm-image]][npm-url]
|
|
15
|
-
[![Downloads][downloads-image]][npm-url]
|
|
16
|
-
[![Snyk][snyk-image]][snyk-url]
|
|
17
|
-
|
|
18
18
|
</div>
|
|
19
19
|
|
|
20
20
|
## Table of Contents
|
|
@@ -141,14 +141,14 @@ const messagesBatchEvent = messageEvent.batch(100);
|
|
|
141
141
|
|
|
142
142
|
## License
|
|
143
143
|
|
|
144
|
-
License [MIT](./LICENSE)
|
|
144
|
+
License [The MIT License](./LICENSE)
|
|
145
145
|
Copyright (c) 2024 Ivan Zakharchanka
|
|
146
146
|
|
|
147
147
|
[npm-url]: https://www.npmjs.com/package/evnty
|
|
148
148
|
[downloads-image]: https://img.shields.io/npm/dw/evnty.svg?maxAge=43200
|
|
149
149
|
[npm-image]: https://img.shields.io/npm/v/evnty.svg?maxAge=43200
|
|
150
150
|
[github-url]: https://github.com/3axap4eHko/evnty/actions
|
|
151
|
-
[github-image]: https://github.com/3axap4eHko/evnty/workflows/
|
|
151
|
+
[github-image]: https://github.com/3axap4eHko/evnty/actions/workflows/build.yml/badge.svg?branch=master
|
|
152
152
|
[codecov-url]: https://codecov.io/gh/3axap4eHko/evnty
|
|
153
153
|
[codecov-image]: https://codecov.io/gh/3axap4eHko/evnty/branch/master/graph/badge.svg?maxAge=43200
|
|
154
154
|
[snyk-url]: https://snyk.io/test/npm/evnty/latest
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "evnty",
|
|
3
3
|
"description": "0-Deps, simple, fast, for browser and node js reactive anonymous event library",
|
|
4
|
-
"version": "4.4.
|
|
4
|
+
"version": "4.4.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
7
7
|
"main": "build/index.cjs",
|
|
@@ -64,12 +64,12 @@
|
|
|
64
64
|
"@swc/jest": "^0.2.37",
|
|
65
65
|
"@types/jest": "^29.5.14",
|
|
66
66
|
"@types/node": "^22.10.1",
|
|
67
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
68
|
-
"@typescript-eslint/parser": "^8.
|
|
69
|
-
"@typescript-eslint/typescript-estree": "^8.
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^8.17.0",
|
|
68
|
+
"@typescript-eslint/parser": "^8.17.0",
|
|
69
|
+
"@typescript-eslint/typescript-estree": "^8.17.0",
|
|
70
70
|
"@vuepress/bundler-vite": "2.0.0-rc.18",
|
|
71
71
|
"@vuepress/theme-default": "2.0.0-rc.61",
|
|
72
|
-
"eslint": "^9.
|
|
72
|
+
"eslint": "^9.16.0",
|
|
73
73
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
74
74
|
"eslint-config-prettier": "^9.1.0",
|
|
75
75
|
"eslint-plugin-import": "^2.31.0",
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"vue": "^3.5.13",
|
|
86
86
|
"vuepress": "2.0.0-rc.18"
|
|
87
87
|
},
|
|
88
|
-
"packageManager": "pnpm@9.14.
|
|
88
|
+
"packageManager": "pnpm@9.14.4"
|
|
89
89
|
}
|