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.
This commit is contained in:
parent
b1af0c0d2b
commit
10a9c3412b
15 changed files with 37 additions and 15 deletions
|
@ -10,6 +10,7 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7",
|
||||
"sass": "^1.49.8"
|
||||
"sass": "^1.49.8",
|
||||
"@astrojs/renderer-preact": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-preact": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-preact": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-react": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-svelte": "^0.5.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-vue": "^0.4.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-svelte": "^0.5.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-preact": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
"preview": "astro preview"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.23.7"
|
||||
"astro": "^0.23.7",
|
||||
"@astrojs/renderer-react": "^0.5.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue