blazeplot 0.3.1 → 0.3.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 +4 -2
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ This section is generated by `bun run docs:readme` from TypeScript declaration f
|
|
|
67
67
|
- [Architecture](#architecture)
|
|
68
68
|
- [Development](#development)
|
|
69
69
|
- [Roadmap](ROADMAP.md)
|
|
70
|
-
- [Changelog for v0.3.
|
|
70
|
+
- [Changelog for v0.3.2](changelogs/v0.3.2.md)
|
|
71
71
|
|
|
72
72
|
### Package entry points
|
|
73
73
|
|
|
@@ -501,9 +501,11 @@ Branch flow:
|
|
|
501
501
|
```bash
|
|
502
502
|
bun install
|
|
503
503
|
bun run dev # Vite dev server → preview/
|
|
504
|
-
bun run ci # Typecheck + tests + package build
|
|
504
|
+
bun run ci # Typecheck + tests + package build + benchmark smoke test
|
|
505
505
|
bun run build # Package build (JS + declarations)
|
|
506
506
|
bun test # Tests
|
|
507
507
|
bun run typecheck # TypeScript strict check
|
|
508
|
+
bun run bench:ci # Headless browser benchmark smoke test
|
|
508
509
|
bun run version:patch # Prepare package.json + changelog for a patch release PR
|
|
510
|
+
bun run release:benchmarks # Append benchmark results to the current release changelog
|
|
509
511
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "blazeplot",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "Federico Cervelli",
|
|
6
6
|
"url": "https://cervelli.dev"
|
|
@@ -68,13 +68,15 @@
|
|
|
68
68
|
"scripts": {
|
|
69
69
|
"dev": "vite",
|
|
70
70
|
"build": "vite build",
|
|
71
|
-
"ci": "bun run
|
|
71
|
+
"bench:ci": "bun run bench --scenario ci-smoke --measure-ms 500 --warmup-ms 100 --width 800 --height 450 --top 12 --setup-timeout-ms 60000",
|
|
72
|
+
"ci": "bun run typecheck && bun test && bun run build && bun run bench:ci",
|
|
72
73
|
"build:js": "vite build --mode js-only",
|
|
73
74
|
"pages:build": "vite build --config vite.pages.config.ts",
|
|
74
75
|
"preview": "vite preview",
|
|
75
76
|
"bench": "bun scripts/benchmark.ts",
|
|
76
77
|
"bench:scatter": "bun scripts/scatter-profile.ts",
|
|
77
78
|
"bench:report": "bun scripts/benchmark-report.ts",
|
|
79
|
+
"release:benchmarks": "bun scripts/release-benchmarks.ts",
|
|
78
80
|
"docs:readme": "bun run build && node scripts/generate-readme-docs.js",
|
|
79
81
|
"test": "bun test",
|
|
80
82
|
"typecheck": "tsc --noEmit",
|