summaryrefslogtreecommitdiff
path: root/examples/framework-multiple
diff options
context:
space:
mode:
authorGravatar Selwyn <talk@selwyn.cc> 2022-03-07 17:43:02 +0100
committerGravatar GitHub <noreply@github.com> 2022-03-07 10:43:02 -0600
commit10a9c3412b4f6e8607687a74eafdb150d3222047 (patch)
tree18caa93f72deca739e972eb5676f2e0a44a47939 /examples/framework-multiple
parentb1af0c0d2b040a9a6cd845dab994132f3e69058a (diff)
downloadastro-10a9c3412b4f6e8607687a74eafdb150d3222047.tar.gz
astro-10a9c3412b4f6e8607687a74eafdb150d3222047.tar.zst
astro-10a9c3412b4f6e8607687a74eafdb150d3222047.zip
Add used renderers to each example package.json `devDependencies` (#2727)
As the first step to not bundling renderers in the core `astro` package the examples show usage with renderers as dependencies.
Diffstat (limited to 'examples/framework-multiple')
-rw-r--r--examples/framework-multiple/package.json6
1 files changed, 5 insertions, 1 deletions
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"
}
}