Version Packages (next) (#12433)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12444/head svelte@5.0.0-next.184
github-actions[bot] 2 months ago committed by GitHub
parent 879d88f612
commit b27113ddfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -252,6 +252,7 @@
"heavy-ears-rule",
"hip-balloons-begin",
"hip-garlics-tap",
"hip-months-breathe",
"hip-pumpkins-boil",
"honest-buses-add",
"honest-dragons-turn",
@ -408,6 +409,7 @@
"orange-masks-exercise",
"orange-yaks-protect",
"orange-zoos-heal",
"perfect-actors-bake",
"pink-bikes-agree",
"pink-goats-promise",
"pink-mayflies-tie",

@ -1,5 +1,13 @@
# svelte
## 5.0.0-next.184
### Patch Changes
- fix: show correct errors for invalid runes in `.svelte.js` files ([#12432](https://github.com/sveltejs/svelte/pull/12432))
- breaking: use structuredClone inside `$state.snapshot` ([#12413](https://github.com/sveltejs/svelte/pull/12413))
## 5.0.0-next.183
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.183",
"version": "5.0.0-next.184",
"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.183';
export const VERSION = '5.0.0-next.184';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save