Skip to content

Commit 61116b4

Browse files
committed
Merge branch 'main' into $inspect.trace-source-tagging
2 parents 58820a6 + 8175091 commit 61116b4

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

.changeset/rude-drinks-relate.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@
1515
},
1616
"scripts": {
1717
"build": "pnpm -r --filter=./packages/* build",
18-
"build:sites": "pnpm -r --filter=./sites/* build",
19-
"preview-site": "npm run build --prefix sites/svelte-5-preview",
2018
"check": "cd packages/svelte && pnpm build && cd ../../ && pnpm -r check",
2119
"lint": "eslint && prettier --check .",
2220
"format": "prettier --write .",
2321
"test": "vitest run",
24-
"test-output": "vitest run --coverage --reporter=json --outputFile=sites/svelte-5-preview/src/routes/status/results.json",
2522
"changeset:version": "changeset version && pnpm -r generate:version && git add --all",
2623
"changeset:publish": "changeset publish",
2724
"bench": "node --allow-natives-syntax ./benchmarking/run.js",

packages/svelte/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# svelte
22

3+
## 5.33.12
4+
5+
### Patch Changes
6+
7+
- fix: correctly transform reassignments to class fields in SSR mode ([#16051](https://github.com/sveltejs/svelte/pull/16051))
8+
39
## 5.33.11
410

511
### Patch Changes

packages/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svelte",
33
"description": "Cybernetically enhanced web apps",
44
"license": "MIT",
5-
"version": "5.33.11",
5+
"version": "5.33.12",
66
"type": "module",
77
"types": "./types/index.d.ts",
88
"engines": {

packages/svelte/src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
* The current version, as set in package.json.
55
* @type {string}
66
*/
7-
export const VERSION = '5.33.11';
7+
export const VERSION = '5.33.12';
88
export const PUBLIC_VERSION = '5';

0 commit comments

Comments
 (0)