node-worker-pool-lite 0.1.2 → 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/node-worker-pool-lite.svg)](https://www.npmjs.com/package/node-worker-pool-lite)
4
4
  [![license](https://img.shields.io/npm/l/node-worker-pool-lite.svg)](https://github.com/armanmikoyan/node-worker-pool/blob/main/LICENSE)
5
5
 
6
- A lightweight Node.js `worker_threads` pool with callback and Promise APIs.
6
+ Lightweight, 0 dependency Node.js `worker_threads` pool with callback and Promise APIs.
7
7
 
8
8
  Node Worker Pool Lite helps you move CPU-heavy work off the main event loop while keeping a small, predictable API. It supports named worker tasks, a fixed-size worker pool, queued jobs, worker replacement after failures, and TypeScript declarations.
9
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "node-worker-pool-lite",
3
- "author": "Arman Mikoyan <arman@mikoyan1@gmail.com>",
4
- "version": "0.1.2",
3
+ "author": "Arman Mikoyan <arman.mikoyan1@gmail.com>",
4
+ "version": "1.0.0",
5
5
  "description": "A lightweight Node.js worker_threads pool with callback and Promise APIs.",
6
6
  "type": "module",
7
7
  "main": "./lib/index.js",
@@ -56,4 +56,4 @@
56
56
  },
57
57
  "sideEffects": false,
58
58
  "license": "MIT"
59
- }
59
+ }