Version Packages (#418)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
a5d6e434ab
commit
0ef0c99b10
21 changed files with 81 additions and 31 deletions
|
@ -1,12 +0,0 @@
|
|||
---
|
||||
'astro': patch
|
||||
'@astrojs/parser': patch
|
||||
'@astrojs/prism': patch
|
||||
'create-astro': patch
|
||||
'@astrojs/renderer-preact': patch
|
||||
'@astrojs/renderer-react': patch
|
||||
'@astrojs/renderer-svelte': patch
|
||||
'@astrojs/renderer-vue': patch
|
||||
---
|
||||
|
||||
Update package.json engines for esm support
|
|
@ -11,7 +11,7 @@
|
|||
"lint": "prettier --check \"src/**/*.js\""
|
||||
},
|
||||
"dependencies": {
|
||||
"astro": "^0.13.2",
|
||||
"astro": "^0.13.3",
|
||||
"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.2",
|
||||
"astro": "^0.13.3",
|
||||
"eleventy-plugin-nesting-toc": "^1.2.0",
|
||||
"luxon": "^1.25.0",
|
||||
"markdown-it": "^12.0.2",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/parser
|
||||
|
||||
## 0.13.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.12.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/parser",
|
||||
"version": "0.12.1",
|
||||
"version": "0.13.3",
|
||||
"author": "Skypack",
|
||||
"license": "MIT",
|
||||
"type": "commonjs",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/prism
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/prism",
|
||||
"version": "0.2.0",
|
||||
"version": "0.2.1",
|
||||
"description": "IYKYK",
|
||||
"main": "index.mjs",
|
||||
"scripts": {
|
||||
|
|
|
@ -1,5 +1,18 @@
|
|||
# astro
|
||||
|
||||
## 0.13.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
- Updated dependencies [ab2972b]
|
||||
- @astrojs/parser@0.13.3
|
||||
- @astrojs/prism@0.2.1
|
||||
- @astrojs/renderer-preact@0.1.1
|
||||
- @astrojs/renderer-react@0.1.1
|
||||
- @astrojs/renderer-svelte@0.1.1
|
||||
- @astrojs/renderer-vue@0.1.2
|
||||
|
||||
## 0.13.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "astro",
|
||||
"version": "0.13.2",
|
||||
"version": "0.13.3",
|
||||
"author": "Skypack",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
|
@ -37,12 +37,12 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@astrojs/markdown-support": "0.1.1",
|
||||
"@astrojs/parser": "0.12.1",
|
||||
"@astrojs/prism": "0.2.0",
|
||||
"@astrojs/renderer-preact": "0.1.0",
|
||||
"@astrojs/renderer-react": "0.1.0",
|
||||
"@astrojs/renderer-svelte": "0.1.0",
|
||||
"@astrojs/renderer-vue": "0.1.1",
|
||||
"@astrojs/parser": "0.13.3",
|
||||
"@astrojs/prism": "0.2.1",
|
||||
"@astrojs/renderer-preact": "0.1.1",
|
||||
"@astrojs/renderer-react": "0.1.1",
|
||||
"@astrojs/renderer-svelte": "0.1.1",
|
||||
"@astrojs/renderer-vue": "0.1.2",
|
||||
"@babel/code-frame": "^7.12.13",
|
||||
"@babel/generator": "^7.13.9",
|
||||
"@babel/parser": "^7.13.15",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# create-astro
|
||||
|
||||
## 0.3.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "create-astro",
|
||||
"version": "0.3.1",
|
||||
"version": "0.3.2",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./create-astro.js"
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-preact
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-preact",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-react
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-react",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-svelte
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-svelte",
|
||||
"version": "0.1.0",
|
||||
"version": "0.1.1",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# @astrojs/renderer-vue
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab2972b: Update package.json engines for esm support
|
||||
|
||||
## 0.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@astrojs/renderer-vue",
|
||||
"version": "0.1.1",
|
||||
"version": "0.1.2",
|
||||
"type": "module",
|
||||
"exports": {
|
||||
".": "./index.js",
|
||||
|
|
|
@ -1,5 +1,12 @@
|
|||
# prettier-plugin-astro
|
||||
|
||||
## 0.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [ab2972b]
|
||||
- @astrojs/parser@0.13.3
|
||||
|
||||
## 0.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "prettier-plugin-astro",
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.4",
|
||||
"main": "index.js",
|
||||
"type": "commonjs",
|
||||
"private": true,
|
||||
|
@ -10,6 +10,6 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"prettier": "^2.2.1",
|
||||
"@astrojs/parser": "^0.12.0"
|
||||
"@astrojs/parser": "^0.13.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
"build": "astro build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"astro": "^0.13.2"
|
||||
"astro": "^0.13.3"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue