summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/blog-multiple-authors/package.json3
-rw-r--r--examples/blog/package.json3
-rw-r--r--examples/docs/package.json4
-rw-r--r--examples/fast-build/package.json3
-rw-r--r--examples/framework-multiple/package.json6
-rw-r--r--examples/framework-preact/package.json3
-rw-r--r--examples/framework-react/package.json3
-rw-r--r--examples/framework-svelte/package.json3
-rw-r--r--examples/framework-vue/package.json3
-rw-r--r--examples/portfolio-svelte/package.json3
-rw-r--r--examples/portfolio/package.json3
-rw-r--r--examples/ssr/package.json3
-rw-r--r--examples/subpath/package.json3
-rw-r--r--examples/with-nanostores/package.json6
-rw-r--r--examples/with-tailwindcss/package.json3
15 files changed, 37 insertions, 15 deletions
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index 1b8a12903..8bd84b329 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -10,6 +10,7 @@
},
"devDependencies": {
"astro": "^0.23.7",
- "sass": "^1.49.8"
+ "sass": "^1.49.8",
+ "@astrojs/renderer-preact": "^0.5.0"
}
}
diff --git a/examples/blog/package.json b/examples/blog/package.json
index d54d2c995..68c0ca62c 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-preact": "^0.5.0"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 5125ebc84..951585c6b 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -12,6 +12,8 @@
"@docsearch/react": "^1.0.0-alpha.28"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-preact": "^0.5.0",
+ "@astrojs/renderer-react": "^0.5.0"
}
}
diff --git a/examples/fast-build/package.json b/examples/fast-build/package.json
index 533e32062..c78e88be7 100644
--- a/examples/fast-build/package.json
+++ b/examples/fast-build/package.json
@@ -13,6 +13,7 @@
"astro": "^0.23.7",
"preact": "~10.6.5",
"unocss": "^0.15.5",
- "vite-imagetools": "^4.0.1"
+ "vite-imagetools": "^4.0.1",
+ "@astrojs/renderer-vue": "^0.4.0"
}
}
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index 0f3f9e0b5..a29274c81 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -10,6 +10,10 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.4.0",
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-preact": "^0.5.0",
+ "@astrojs/renderer-react": "^0.5.0",
+ "@astrojs/renderer-svelte": "^0.5.1",
+ "@astrojs/renderer-vue": "^0.4.0"
}
}
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 159fd0838..1c0bd497f 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-preact": "^0.5.0"
}
}
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index f07b3d6f1..eccae118f 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-react": "^0.5.0"
}
}
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 136436ae9..619469f16 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-svelte": "^0.5.1"
}
}
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 5ed84800f..cacb3ff78 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-vue": "^0.4.0"
}
}
diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json
index 0ea6e4cc5..8d8af9400 100644
--- a/examples/portfolio-svelte/package.json
+++ b/examples/portfolio-svelte/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-svelte": "^0.5.1"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index cb04abf0a..ad2ce075e 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-preact": "^0.5.0"
}
}
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 35cabd062..308529a45 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -13,7 +13,8 @@
"devDependencies": {
"astro": "^0.23.7",
"unocss": "^0.15.5",
- "vite-imagetools": "^4.0.1"
+ "vite-imagetools": "^4.0.1",
+ "@astrojs/renderer-svelte": "^0.5.1"
},
"dependencies": {
"@astropub/webapi": "^0.10.13"
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index 5610f1ce8..43b01d9f7 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -9,6 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-react": "^0.5.0"
}
}
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index 5fc8799e7..b3a71128a 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -17,6 +17,10 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.4.0",
- "astro": "^0.23.7"
+ "astro": "^0.23.7",
+ "@astrojs/renderer-preact": "^0.5.0",
+ "@astrojs/renderer-react": "^0.5.0",
+ "@astrojs/renderer-svelte": "^0.5.1",
+ "@astrojs/renderer-vue": "^0.4.0"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index ffe2fc7a1..3922d8eb9 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -11,6 +11,7 @@
"devDependencies": {
"astro": "^0.23.7",
"autoprefixer": "^10.4.0",
- "tailwindcss": "^3.0.5"
+ "tailwindcss": "^3.0.5",
+ "@astrojs/renderer-preact": "^0.5.0"
}
}