@hyperframes/producer 0.4.16 → 0.4.18
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/benchmark.d.ts +9 -2
- package/dist/benchmark.d.ts.map +1 -1
- package/dist/hyperframe.manifest.json +1 -1
- package/dist/hyperframe.runtime.iife.js +5 -5
- package/dist/index.js +23 -2
- package/dist/index.js.map +2 -2
- package/dist/logger.d.ts +19 -0
- package/dist/logger.d.ts.map +1 -1
- package/dist/public-server.js +23 -2
- package/dist/public-server.js.map +2 -2
- package/dist/services/frameDirCache.d.ts +76 -0
- package/dist/services/frameDirCache.d.ts.map +1 -0
- package/dist/services/renderOrchestrator.d.ts +17 -0
- package/dist/services/renderOrchestrator.d.ts.map +1 -1
- package/package.json +4 -3
package/dist/benchmark.d.ts
CHANGED
|
@@ -2,14 +2,21 @@
|
|
|
2
2
|
/**
|
|
3
3
|
* Render Benchmark
|
|
4
4
|
*
|
|
5
|
-
* Runs each test fixture multiple times and records per-stage timing
|
|
6
|
-
* Results are saved to
|
|
5
|
+
* Runs each test fixture multiple times and records per-stage timing
|
|
6
|
+
* plus peak heap/RSS memory. Results are saved to
|
|
7
|
+
* producer/tests/perf/benchmark-results.json.
|
|
7
8
|
*
|
|
8
9
|
* Usage:
|
|
9
10
|
* bun run benchmark # 3 runs per fixture (default)
|
|
10
11
|
* bun run benchmark -- --runs 5 # 5 runs per fixture
|
|
11
12
|
* bun run benchmark -- --only chat # single fixture
|
|
12
13
|
* bun run benchmark -- --exclude-tags slow
|
|
14
|
+
* bun run benchmark -- --tags hdr # only fixtures tagged "hdr"
|
|
15
|
+
* bun run bench:hdr # convenience: --tags hdr
|
|
16
|
+
*
|
|
17
|
+
* `--tags` and `--exclude-tags` may be passed together; a fixture must match
|
|
18
|
+
* at least one positive tag (when `--tags` is provided) AND must not match
|
|
19
|
+
* any excluded tag.
|
|
13
20
|
*/
|
|
14
21
|
export {};
|
|
15
22
|
//# sourceMappingURL=benchmark.d.ts.map
|
package/dist/benchmark.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"benchmark.d.ts","sourceRoot":"","sources":["../src/benchmark.ts"],"names":[],"mappings":";AACA
|
|
1
|
+
{"version":3,"file":"benchmark.d.ts","sourceRoot":"","sources":["../src/benchmark.ts"],"names":[],"mappings":";AACA;;;;;;;;;;;;;;;;;;GAkBG"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "0.1.0",
|
|
3
3
|
"buildId": "dev",
|
|
4
|
-
"sha256": "
|
|
4
|
+
"sha256": "f62b766b11799dfeb7be53b32e8604b4823779a5fd0234842a1f6f1bfc3b9ab4",
|
|
5
5
|
"artifacts": {
|
|
6
6
|
"iife": "hyperframe.runtime.iife.js",
|
|
7
7
|
"esm": "hyperframe.runtime.mjs"
|