0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00

Version Packages (#1206)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2021-08-23 14:18:18 -07:00 committed by GitHub
parent 884a2ea76a
commit 582220c8a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 38 additions and 45 deletions

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Fix TypeScript "types" reference in package.json

View file

@ -1,5 +0,0 @@
---
'astro': patch
---
Improve schema validation using zod

View file

@ -1,14 +0,0 @@
---
'astro': patch
---
Add `<Debug>` component for JavaScript-free client-side debugging.
```astro
---
import Debug from 'astro/debug';
const obj = { /* ... */ }
---
<Debug {obj} />
```

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -9,7 +9,7 @@
},
"devDependencies": {
"@astrojs/renderer-lit": "^0.1.0",
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2",
"astro": "^0.19.3",
"@astrojs/renderer-solid": "0.1.0"
},
"snowpack": {

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -18,7 +18,7 @@
"devDependencies": {
"@contentful/rich-text-html-renderer": "^14.1.2",
"@contentful/rich-text-types": "^14.1.2",
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2",
"astro": "^0.19.3",
"rehype-add-classes": "^1.0.0",
"rehype-toc": "^3.0.2",
"remark-autolink-headings": "^6.0.1",

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -8,7 +8,7 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"dependencies": {
"nanostores": "^0.3.3"

View file

@ -9,7 +9,7 @@
},
"devDependencies": {
"tailwindcss": "^2.1.2",
"astro": "^0.19.2"
"astro": "^0.19.3"
},
"snowpack": {
"workspaceRoot": "../.."

View file

@ -1,5 +1,22 @@
# astro
## 0.19.3
### Patch Changes
- f9cd0310: Fix TypeScript "types" reference in package.json
- f9cd0310: Improve schema validation using zod
- efb41f22: Add `<Debug>` component for JavaScript-free client-side debugging.
```astro
---
import Debug from 'astro/debug';
const obj = { /* ... */ }
---
<Debug {obj} />
```
## 0.19.2
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "0.19.2",
"version": "0.19.3",
"author": "Skypack",
"license": "MIT",
"type": "module",

View file

@ -29,7 +29,7 @@
"vscode-languageserver-textdocument": "^1.0.1"
},
"devDependencies": {
"astro": "0.19.2",
"astro": "0.19.3",
"astro-scripts": "0.0.1"
}
}

View file

@ -8,6 +8,6 @@
"build": "astro build"
},
"devDependencies": {
"astro": "^0.19.2"
"astro": "^0.19.3"
}
}