Skip to content

Commit 4682362

Browse files
committed
fix: simplify markdown table
1 parent f2d0a07 commit 4682362

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

README.md

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,13 @@ Benchmark comparing JavaScript bundlers and build tools ([Rspack](https://github
44

55
## Metrics
66

7-
| Name | Description | Notes |
8-
| ------------------ | ----------------------------------------------- | -------------------------------------------------- |
9-
| **Dev cold start** | Total time from dev server start to page loaded | Equals to `server start` + `page load` |
10-
| **Server start** | Time taken for the dev server to start | Includes initial build for loaded modules |
11-
| **Page load** | Time to load the page after server is ready | |
12-
| **HMR** | Time to HMR after changing a module | Average time to update root module and leaf module |
13-
| **Prod build** | Time taken to build the production bundles | |
14-
| **Total size** | Total size of the bundle | Minified by the default minifier |
15-
| **Gzipped size** | Gzipped size of the bundle | Represents actual network transfer size |
7+
| Name | Description | Notes |
8+
| ------------------ | ------------------------------------------------ | --------------------------------------- |
9+
| **Dev cold start** | Time from starting the dev server to page loaded | - |
10+
| **HMR** | Time to HMR after changing a module | - |
11+
| **Prod build** | Time taken to build the production bundles | |
12+
| **Total size** | Total size of the bundle | Minified by the default minifier |
13+
| **Gzipped size** | Gzipped size of the bundle | Represents actual network transfer size |
1614

1715
## Notes
1816

benchmark.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ if (runDev) {
652652
['Name', 'Dev cold start', 'HMR', 'Prod build'],
653653
...actualToolNames.map((name) => [
654654
name,
655-
`${devColdStartRanked[name]} (${averageResults[name].serverStart.replace('ms', '')} + ${averageResults[name].onLoad.replace('ms', '')})`,
655+
devColdStartRanked[name],
656656
hmrRanked[name],
657657
prodBuildRanked[name],
658658
]),

0 commit comments

Comments
 (0)