diff --git a/packages/docs/src/assets/background.svg b/packages/docs/src/assets/background.svg
deleted file mode 100644
index 4b2be0a..0000000
--- a/packages/docs/src/assets/background.svg
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/packages/docs/src/components/DependencyStats.astro b/packages/docs/src/components/DependencyStats.astro
index 175cbc6..4de7d2c 100644
--- a/packages/docs/src/components/DependencyStats.astro
+++ b/packages/docs/src/components/DependencyStats.astro
@@ -1,13 +1,11 @@
---
import { getCollection } from 'astro:content'
-import background from '../assets/background.svg'
const statsEntries = await getCollection('stats')
const stats = statsEntries.map((entry) => entry.data)
---
-
Framework Tracker
@@ -23,15 +21,20 @@ const stats = statsEntries.map((entry) => entry.data)
.
+
+ All stats are taken from the basic starter kits each meta-framework
+ provides based on their current docs.
+
+
Dev Time Performance
-
+
- | Framework |
- Prod Deps |
- Dev Deps |
+ Framework |
+ Prod Deps |
+ Dev Deps |
@@ -47,7 +50,6 @@ const stats = statsEntries.map((entry) => entry.data)
-
Details
@@ -75,6 +77,31 @@ const stats = statsEntries.map((entry) => entry.data)
+
+
+
+
+ | Framework |
+ Install |
+ Cold Build |
+ Warm Build |
+
+
+
+ {
+ stats.map((framework) => (
+
+ | {framework.name} |
+ {(framework.installTimeMs / 1000).toFixed(2)}s |
+ {(framework.coldBuildTimeMs / 1000).toFixed(2)}s |
+ {(framework.warmBuildTimeMs / 1000).toFixed(2)}s |
+
+ ))
+ }
+
+
+
+
Runtime Performance
Coming soon...
@@ -82,21 +109,24 @@ const stats = statsEntries.map((entry) => entry.data)