poolifier 2.2.1 → 2.2.2
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 +3 -5
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
<img alt="Javascript Standard Style Guide" src="https://img.shields.io/badge/code_style-standard-brightgreen.svg"></a>
|
|
22
22
|
<a href="https://gitter.im/poolifier/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge">
|
|
23
23
|
<img alt="Gitter chat" src="https://badges.gitter.im/poolifier/community.svg"></a>
|
|
24
|
-
<a href="https://badgen.net/
|
|
25
|
-
<img alt="Dependabot" src="https://badgen.net/
|
|
24
|
+
<a href="https://badgen.net/badge/Dependabot/enabled/green?icon=dependabot">
|
|
25
|
+
<img alt="Dependabot" src="https://badgen.net/badge/Dependabot/enabled/green?icon=dependabot"></a>
|
|
26
26
|
<a href="http://makeapullrequest.com">
|
|
27
27
|
<img alt="PR Welcome" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square"></a>
|
|
28
28
|
<a href="https://img.shields.io/static/v1?label=dependencies&message=no%20dependencies&color=brightgreen">
|
|
@@ -146,7 +146,7 @@ Remember that workers can only send and receive serializable data.
|
|
|
146
146
|
|
|
147
147
|
## Node versions
|
|
148
148
|
|
|
149
|
-
You can use node versions 12.x
|
|
149
|
+
You can use node versions >= 12.x for thread pool, and node versions >= 16.x for cluster pool.
|
|
150
150
|
|
|
151
151
|
## API
|
|
152
152
|
|
|
@@ -249,8 +249,6 @@ Choose your task here [2.0.0](https://github.com/poolifier/poolifier/projects/1)
|
|
|
249
249
|
## Team
|
|
250
250
|
|
|
251
251
|
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
|
|
252
|
-
<!-- prettier-ignore-start -->
|
|
253
|
-
<!-- markdownlint-disable -->
|
|
254
252
|
|
|
255
253
|
**Creator/Owner:**
|
|
256
254
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "poolifier",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "A fast, easy to use Node.js Worker Thread Pool and Cluster Pool implementation",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"benchmark:prod": "npm run build:prod && node -r source-map-support/register benchmarks/internal/bench.js",
|
|
13
13
|
"test": "npm run build && nyc mocha 'tests/**/*.test.js'",
|
|
14
14
|
"test:debug": "npm run build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
|
|
15
|
-
"test:prod": "npm run build:prod && nyc mocha 'tests/**/*.test.js'",
|
|
16
15
|
"coverage": "nyc report --reporter=lcov",
|
|
17
16
|
"coverage:html": "nyc report --reporter=html",
|
|
18
17
|
"format": "prettier --loglevel silent --write .; prettierx --write .",
|