poolifier 2.7.3 → 2.7.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "poolifier",
4
- "version": "2.7.3",
4
+ "version": "2.7.5",
5
5
  "description": "Fast and small Node.js Worker_Threads and Cluster Worker Pool",
6
6
  "license": "MIT",
7
7
  "main": "./lib/index.js",
@@ -16,10 +16,10 @@
16
16
  "globals": [
17
17
  "describe",
18
18
  "it",
19
- "before",
20
19
  "after",
21
- "beforeEach",
22
- "afterEach"
20
+ "before",
21
+ "afterEach",
22
+ "beforeEach"
23
23
  ]
24
24
  },
25
25
  "engines": {
@@ -27,8 +27,8 @@
27
27
  "pnpm": ">=8.6.0"
28
28
  },
29
29
  "volta": {
30
- "node": "20.7.0",
31
- "pnpm": "8.7.6"
30
+ "node": "20.8.0",
31
+ "pnpm": "8.8.0"
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",
@@ -84,15 +84,15 @@
84
84
  ],
85
85
  "devDependencies": {
86
86
  "@biomejs/biome": "^1.2.2",
87
- "@commitlint/cli": "^17.7.1",
87
+ "@commitlint/cli": "^17.7.2",
88
88
  "@commitlint/config-conventional": "^17.7.0",
89
89
  "@release-it/bumper": "^5.1.0",
90
90
  "@release-it/keep-a-changelog": "^4.0.0",
91
91
  "@rollup/plugin-terser": "^0.4.3",
92
- "@rollup/plugin-typescript": "^11.1.3",
93
- "@types/node": "^20.6.4",
94
- "@typescript-eslint/eslint-plugin": "^6.7.2",
95
- "@typescript-eslint/parser": "^6.7.2",
92
+ "@rollup/plugin-typescript": "^11.1.4",
93
+ "@types/node": "^20.8.2",
94
+ "@typescript-eslint/eslint-plugin": "^6.7.4",
95
+ "@typescript-eslint/parser": "^6.7.4",
96
96
  "benchmark": "^2.1.4",
97
97
  "c8": "^8.0.1",
98
98
  "eslint": "^8.50.0",
@@ -113,8 +113,8 @@
113
113
  "mocha": "^10.2.0",
114
114
  "mochawesome": "^7.1.3",
115
115
  "prettier": "^3.0.3",
116
- "release-it": "^16.2.0",
117
- "rollup": "^3.29.3",
116
+ "release-it": "^16.2.1",
117
+ "rollup": "^3.29.4",
118
118
  "rollup-plugin-analyzer": "^4.0.0",
119
119
  "rollup-plugin-command": "^1.1.3",
120
120
  "rollup-plugin-delete": "^2.0.0",
@@ -128,14 +128,14 @@
128
128
  "scripts": {
129
129
  "preinstall": "npx --yes only-allow pnpm",
130
130
  "build": "rollup --config --environment BUILD:development",
131
- "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
132
- "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
133
131
  "build:prod": "rollup --config",
134
- "benchmark": "pnpm build && node -r source-map-support/register benchmarks/internal/bench.mjs",
135
- "benchmark:debug": "pnpm build && node -r source-map-support/register --inspect benchmarks/internal/bench.mjs",
136
- "benchmark:prod": "pnpm build:prod && node benchmarks/internal/bench.mjs",
137
- "test": "pnpm build && c8 mocha 'tests/**/*.test.js'",
138
- "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.js'",
132
+ "build:typedoc": "rollup --config --environment DOCUMENTATION,BUILD:development",
133
+ "build:analyze": "rollup --config --environment ANALYZE,BUILD:development",
134
+ "benchmark": "pnpm build && node --max-old-space-size=4096 -r source-map-support/register benchmarks/internal/bench.mjs",
135
+ "benchmark:prod": "pnpm build:prod && node --max-old-space-size=4096 benchmarks/internal/bench.mjs",
136
+ "benchmark:debug": "pnpm build && node --max-old-space-size=4096 -r source-map-support/register --inspect benchmarks/internal/bench.mjs",
137
+ "test": "pnpm build --environment SOURCEMAP:false && c8 mocha 'tests/**/*.test.mjs'",
138
+ "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
139
139
  "coverage": "c8 report --reporter=lcov",
140
140
  "coverage:html": "c8 report --reporter=html",
141
141
  "format": "biome format . --write; ts-standard . --fix",