Version Packages (#484)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
32fdb383c7
commit
8b69c2d406
18 changed files with 49 additions and 44 deletions
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fixed README header aspect ratio
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Fix [472](https://github.com/snowpackjs/astro/issues/472) by not injecting `astro-*` scoped class unless it is actually used
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'prettier-plugin-astro': patch
|
||||
---
|
||||
|
||||
Add @types/prettier for type support
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Makes providing a head element on pages optional
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Allows astro documents to omit the head element
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
'@astrojs/renderer-preact': patch
|
||||
'@astrojs/renderer-react': patch
|
||||
'@astrojs/renderer-vue': patch
|
||||
---
|
||||
|
||||
Allows renderers to provide knownEntrypoint config values
|
|
@ -11,7 +11,7 @@
|
|||
"lint": "prettier --check \"src/**/*.js\""
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^0.13.10",
|
||||
"astro": "^0.13.11",
|
||||
"date-fns": "^2.19.0",
|
||||
"deepmerge": "^4.2.2",
|
||||
"docsearch.js": "^2.6.3",
|
||||
|
@ -25,7 +25,7 @@
|
|||
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
|
||||
"@contentful/rich-text-html-renderer": "^14.1.2",
|
||||
"@contentful/rich-text-types": "^14.1.2",
|
||||
"astro": "^0.13.10",
|
||||
"astro": "^0.13.11",
|
||||
"eleventy-plugin-nesting-toc": "^1.2.0",
|
||||
"luxon": "^1.25.0",
|
||||
"markdown-it": "^12.0.2",
|
||||
|
|
|
@ -1,5 +1,19 @@
|
|||
# astro
|
||||
|
||||
## 0.13.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6573bea: Fixed README header aspect ratio
|
||||
- 2671b6f: Fix [472](https://github.com/snowpackjs/astro/issues/472) by not injecting `astro-*` scoped class unless it is actually used
|
||||
- b547892: Makes providing a head element on pages optional
|
||||
- b547892: Allows astro documents to omit the head element
|
||||
- 0abd251: Allows renderers to provide knownEntrypoint config values
|
||||
- Updated dependencies [0abd251]
|
||||
- @astrojs/renderer-preact@0.1.3
|
||||
- @astrojs/renderer-react@0.1.3
|
||||
- @astrojs/renderer-vue@0.1.3
|
||||
|
||||
## 0.13.10
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "astro",
|
||||
"version": "0.13.10",
|
||||
"version": "0.13.11",
|
||||
"author": "Skypack",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
@ -44,10 +44,10 @@
|
|||
"@astrojs/markdown-support": "0.1.2",
|
||||
"@astrojs/parser": "0.13.10",
|
||||
"@astrojs/prism": "0.2.2",
|
||||
"@astrojs/renderer-preact": "0.1.2",
|
||||
"@astrojs/renderer-react": "0.1.2",
|
||||
"@astrojs/renderer-preact": "0.1.3",
|
||||
"@astrojs/renderer-react": "0.1.3",
|
||||
"@astrojs/renderer-svelte": "0.1.1",
|
||||
"@astrojs/renderer-vue": "0.1.2",
|
||||
"@astrojs/renderer-vue": "0.1.3",
|
||||
"@babel/code-frame": "^7.12.13",
|
||||
"@babel/generator": "^7.13.9",
|
||||
"@babel/parser": "^7.13.15",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-preact
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0abd251: Allows renderers to provide knownEntrypoint config values
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-preact",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-react
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0abd251: Allows renderers to provide knownEntrypoint config values
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-react",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-vue
|
||||
|
||||
## 0.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 0abd251: Allows renderers to provide knownEntrypoint config values
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-vue",
|
||||
"version": "0.1.2",
|
||||
"version": "0.1.3",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# prettier-plugin-astro
|
||||
|
||||
## 0.0.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ff7ec2f: Add @types/prettier for type support
|
||||
|
||||
## 0.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "prettier-plugin-astro",
|
||||
"version": "0.0.4",
|
||||
"version": "0.0.5",
|
||||
"main": "index.js",
|
||||
"type": "commonjs",
|
||||
"private": true,
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
"build": "astro build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.13.10"
|
||||
"astro": "^0.13.11"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue