mirror of
https://github.com/withastro/astro.git
synced 2025-01-27 22:19:04 -05:00
[ci] release (#10943)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
6c603bcc97
commit
2dcbcdb857
6 changed files with 23 additions and 20 deletions
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
"@astrojs/web-vitals": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Adds a new web-vitals integration powered by Astro DB
|
|
|
@ -1,6 +0,0 @@
|
||||||
---
|
|
||||||
"@astrojs/db": minor
|
|
||||||
---
|
|
||||||
|
|
||||||
- Fix duplicate table recreations when you start your dev server.
|
|
||||||
- Remove eager re-seeding when updating your seed file in development. Seeding still runs on dev server startup for SQLite inspector tools.
|
|
|
@ -1,5 +1,12 @@
|
||||||
# @astrojs/db
|
# @astrojs/db
|
||||||
|
|
||||||
|
## 0.11.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#10919](https://github.com/withastro/astro/pull/10919) [`44bafa9`](https://github.com/withastro/astro/commit/44bafa989af0cc380696bb6381048fc1ee55dd5b) Thanks [@bholmesdev](https://github.com/bholmesdev)! - - Fix duplicate table recreations when you start your dev server.
|
||||||
|
- Remove eager re-seeding when updating your seed file in development. Seeding still runs on dev server startup for SQLite inspector tools.
|
||||||
|
|
||||||
## 0.10.7
|
## 0.10.7
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/db",
|
"name": "@astrojs/db",
|
||||||
"version": "0.10.7",
|
"version": "0.11.0",
|
||||||
"description": "Add libSQL and Astro Studio support to your Astro site",
|
"description": "Add libSQL and Astro Studio support to your Astro site",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
7
packages/integrations/web-vitals/CHANGELOG.md
Normal file
7
packages/integrations/web-vitals/CHANGELOG.md
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# @astrojs/web-vitals
|
||||||
|
|
||||||
|
## 0.1.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#10883](https://github.com/withastro/astro/pull/10883) [`a37d76a`](https://github.com/withastro/astro/commit/a37d76a42ac00697be3acd575f3f7163129ea75c) Thanks [@delucis](https://github.com/delucis)! - Adds a new web-vitals integration powered by Astro DB
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/web-vitals",
|
"name": "@astrojs/web-vitals",
|
||||||
"description": "Track your website’s performance with Astro DB",
|
"description": "Track your website’s performance with Astro DB",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"author": "withastro",
|
"author": "withastro",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -31,18 +31,18 @@
|
||||||
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
||||||
"test": "astro-scripts test --timeout 50000 \"test/**/*.test.js\""
|
"test": "astro-scripts test --timeout 50000 \"test/**/*.test.js\""
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"web-vitals": "^3.5.2"
|
"web-vitals": "^3.5.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@astrojs/db": "^0.11.0"
|
"@astrojs/db": "^0.11.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/db": "workspace:*",
|
"@astrojs/db": "workspace:*",
|
||||||
"astro": "workspace:*",
|
"astro": "workspace:*",
|
||||||
"astro-scripts": "workspace:*",
|
"astro-scripts": "workspace:*",
|
||||||
"linkedom": "^0.16.11"
|
"linkedom": "^0.16.11"
|
||||||
},
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"provenance": true
|
"provenance": true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue