Skip to content

Commit 5e8bc8b

Browse files
rfrf
authored andcommitted
remove min and max from table
1 parent ebe1030 commit 5e8bc8b

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

packages/docs/src/components/DependencyStats.astro

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,7 @@ function formatBytesToMB(bytes: number): string {
9191
<th scope="col">Min Install</th>
9292
<th scope="col">Max Install</th>
9393
<th scope="col">Avg Cold Build</th>
94-
<th scope="col">Min Cold Build</th>
95-
<th scope="col">Max Cold Build</th>
9694
<th scope="col">Avg Warm Build</th>
97-
<th scope="col">Min Warm Build</th>
98-
<th scope="col">Max Warm Build</th>
9995
<th scope="col">Build Output</th>
10096
</tr>
10197
</thead>
@@ -108,11 +104,7 @@ function formatBytesToMB(bytes: number): string {
108104
<td>{(framework.installTime.minMs / 1000).toFixed(2)}s</td>
109105
<td>{(framework.installTime.maxMs / 1000).toFixed(2)}s</td>
110106
<td>{(framework.coldBuildTime.avgMs / 1000).toFixed(2)}s</td>
111-
<td>{(framework.coldBuildTime.minMs / 1000).toFixed(2)}s</td>
112-
<td>{(framework.coldBuildTime.maxMs / 1000).toFixed(2)}s</td>
113107
<td>{(framework.warmBuildTime.avgMs / 1000).toFixed(2)}s</td>
114-
<td>{(framework.warmBuildTime.minMs / 1000).toFixed(2)}s</td>
115-
<td>{(framework.warmBuildTime.maxMs / 1000).toFixed(2)}s</td>
116108
<td>{formatBytesToMB(framework.buildOutputSize)}</td>
117109
</tr>
118110
))

0 commit comments

Comments
 (0)