blaze-performance-tester 3.0.26 → 3.0.27
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/dist/blaze.win32-x64-msvc.node +0 -0
- package/dist/index.win32-x64-msvc.node +0 -0
- package/index.node +0 -0
- package/index.win32-x64-msvc.node +0 -0
- package/package.json +4 -5
- package/index.js +0 -5
|
Binary file
|
|
Binary file
|
package/index.node
ADDED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blaze-performance-tester",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.27",
|
|
4
4
|
"description": "A high-performance, multi-threaded load testing engine built with Rust and QuickJS.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,11 +18,10 @@
|
|
|
18
18
|
"blaze.win32-x64-msvc.node"
|
|
19
19
|
],
|
|
20
20
|
"scripts": {
|
|
21
|
-
|
|
22
|
-
"build:rust": "napi build --platform --release --js index.js --dts index.d.ts",
|
|
21
|
+
"prebuild": "node -e \"if (!fs.existsSync('dist')) fs.mkdirSync('dist')\"",
|
|
22
|
+
"build:rust": "napi build --platform --release --output-dir dist --js index.js --dts index.d.ts",
|
|
23
23
|
"build:cli": "esbuild cli.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/cli.js",
|
|
24
|
-
"
|
|
25
|
-
"build": "npm run build:rust && npm run build:cli && npm run postbuild"
|
|
24
|
+
"build": "npm run prebuild && npm run build:rust && npm run build:cli"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
27
|
"esbuild": "^0.20.0"
|