Version Packages (#484)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-06-21 15:38:41 -04:00 committed by GitHub
parent 32fdb383c7
commit 8b69c2d406
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 49 additions and 44 deletions

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fixed README header aspect ratio

View file

@ -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

View file

@ -1,5 +0,0 @@
---
'prettier-plugin-astro': patch
---
Add @types/prettier for type support

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Makes providing a head element on pages optional

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Allows astro documents to omit the head element

View file

@ -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

View file

@ -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",

View file

@ -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

View file

@ -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",

View file

@ -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

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/renderer-preact",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"exports": {
".": "./index.js",

View file

@ -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

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/renderer-react",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"exports": {
".": "./index.js",

View file

@ -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

View file

@ -1,6 +1,6 @@
{
"name": "@astrojs/renderer-vue",
"version": "0.1.2",
"version": "0.1.3",
"type": "module",
"exports": {
".": "./index.js",

View file

@ -1,5 +1,11 @@
# prettier-plugin-astro
## 0.0.5
### Patch Changes
- ff7ec2f: Add @types/prettier for type support
## 0.0.4
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "prettier-plugin-astro",
"version": "0.0.4",
"version": "0.0.5",
"main": "index.js",
"type": "commonjs",
"private": true,

View file

@ -7,6 +7,6 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.13.10"
"astro": "^0.13.11"
}
}