Version Packages (next) (#10158)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10171/head svelte@5.0.0-next.34
github-actions[bot] 9 months ago committed by GitHub
parent c3e30efeb2
commit 2e9e8e8454
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,7 @@
"brave-walls-destroy",
"breezy-carrots-flash",
"bright-peas-juggle",
"bright-snakes-sing",
"brown-spoons-boil",
"chatty-cups-drop",
"chatty-taxis-juggle",
@ -76,6 +77,7 @@
"itchy-terms-guess",
"khaki-mails-draw",
"khaki-moose-arrive",
"kind-baboons-approve",
"kind-deers-lay",
"kind-eagles-join",
"large-clouds-carry",
@ -102,6 +104,7 @@
"neat-dingos-clap",
"new-boats-wait",
"ninety-dingos-walk",
"odd-buckets-lie",
"odd-needles-joke",
"odd-schools-wait",
"odd-shoes-cheat",
@ -132,6 +135,7 @@
"serious-socks-cover",
"serious-zebras-scream",
"seven-deers-jam",
"seven-jobs-sniff",
"seven-ravens-check",
"sharp-gorillas-impress",
"sharp-kids-happen",
@ -143,6 +147,7 @@
"slimy-walls-draw",
"slow-beds-shave",
"slow-chefs-dream",
"slow-wombats-reply",
"small-papayas-laugh",
"smart-parents-swim",
"smart-zebras-pay",
@ -151,6 +156,7 @@
"soft-tigers-wink",
"sour-forks-stare",
"sour-rules-march",
"sour-weeks-fix",
"spicy-plums-admire",
"spotty-pens-agree",
"stale-books-perform",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.34
### Patch Changes
- fix: make `@types/estree` a dependency ([#10150](https://github.com/sveltejs/svelte/pull/10150))
- fix: improve intro transitions on dynamic mount ([#10162](https://github.com/sveltejs/svelte/pull/10162))
- fix: improve code generation ([#10156](https://github.com/sveltejs/svelte/pull/10156))
- fix: adjust `$inspect.with` type ([`c7cb90c91`](https://github.com/sveltejs/svelte/commit/c7cb90c91cd3553ad59126267c9bfddecbb290b4))
- fix: improve how transitions are handled on mount ([#10157](https://github.com/sveltejs/svelte/pull/10157))
- fix: adjust `parse` return type ([`a271878ab`](https://github.com/sveltejs/svelte/commit/a271878abe7018923839401129b18082eb2c811a))
## 5.0.0-next.33
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.33",
"version": "5.0.0-next.34",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.33';
export const VERSION = '5.0.0-next.34';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save