Version Packages (next) (#12794)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12795/head svelte@5.0.0-next.214
github-actions[bot] 5 months ago committed by GitHub
parent 57a7b0cd48
commit a0bbf2ace0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -280,6 +280,7 @@
"heavy-feet-attend",
"hip-balloons-begin",
"hip-garlics-tap",
"hip-goats-smoke",
"hip-months-breathe",
"hip-pumpkins-boil",
"hip-stingrays-teach",
@ -425,6 +426,7 @@
"nice-avocados-move",
"nice-bottles-greet",
"nice-jobs-breathe",
"nine-ants-invite",
"nine-cooks-join",
"ninety-days-visit",
"ninety-dingos-walk",
@ -456,6 +458,7 @@
"orange-yaks-protect",
"orange-zoos-heal",
"perfect-actors-bake",
"perfect-hairs-matter",
"perfect-hats-dance",
"pink-bikes-agree",
"pink-goats-promise",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.214
### Patch Changes
- fix: ensure custom element styles append correctly during prod ([#12777](https://github.com/sveltejs/svelte/pull/12777))
- fix: invalidate signals following ++/-- inside each block ([#12780](https://github.com/sveltejs/svelte/pull/12780))
- feat: better code generation for destructuring assignments ([#12780](https://github.com/sveltejs/svelte/pull/12780))
## 5.0.0-next.213
### Patch Changes

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

Loading…
Cancel
Save