Skip to content

Commit 0081a57

Browse files
committed
feat: Add support for {...rest} props
Fixes #48
1 parent 7c5c5e2 commit 0081a57

15 files changed

+400
-317
lines changed

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/bfanger/svelte-preprocess-react.git"
1212
},
13-
"version": "2.0.4",
13+
"version": "2.0.5",
1414
"license": "MIT",
1515
"type": "module",
1616
"scripts": {
@@ -44,46 +44,46 @@
4444
]
4545
},
4646
"devDependencies": {
47-
"@playwright/test": "^1.48.2",
47+
"@playwright/test": "^1.49.0",
4848
"@sveltejs/adapter-static": "^3.0.6",
4949
"@sveltejs/kit": "^2.8.1",
5050
"@sveltejs/package": "^2.3.7",
5151
"@sveltejs/vite-plugin-svelte": "4.0.1",
5252
"@testing-library/react": "^16.0.1",
53-
"@testing-library/svelte": "^5.2.4",
54-
"@types/node": "^22.9.0",
53+
"@testing-library/svelte": "^5.2.6",
54+
"@types/node": "^22.9.1",
5555
"@types/react": "^18.3.12",
5656
"@types/react-dom": "^18.3.1",
5757
"autoprefixer": "^10.4.20",
5858
"concurrently": "^9.1.0",
59-
"eslint": "9.14.0",
59+
"eslint": "9.15.0",
6060
"eslint-config-prettier": "^9.1.0",
6161
"eslint-plugin-only-warn": "^1.1.0",
6262
"eslint-plugin-react": "^7.37.2",
6363
"eslint-plugin-svelte": "^2.46.0",
6464
"globals": "^15.12.0",
6565
"happy-dom": "^15.11.6",
66-
"husky": "^9.1.6",
66+
"husky": "^9.1.7",
6767
"lint-staged": "^15.2.10",
6868
"postcss": "^8.4.49",
6969
"prettier": "^3.3.3",
70-
"prettier-plugin-svelte": "^3.2.8",
70+
"prettier-plugin-svelte": "^3.3.0",
7171
"react": "^18.3.1",
7272
"react-dom": "^18.3.1",
7373
"react-youtube": "^10.1.0",
74-
"svelte": "5.2.2",
74+
"svelte": "5.2.7",
7575
"svelte-check": "^4.0.9",
7676
"svelte-youtube-lite": "~1.2.1",
7777
"svelte2tsx": "^0.7.26",
7878
"typescript": "^5.6.3",
79-
"typescript-eslint": "^8.14.0",
79+
"typescript-eslint": "^8.15.0",
8080
"vite": "^5.4.11",
81-
"vite-tsconfig-paths": "^5.1.2",
81+
"vite-tsconfig-paths": "^5.1.3",
8282
"vitest": "^2.1.5"
8383
},
8484
"dependencies": {
8585
"estree-walker": "^3.0.3",
86-
"magic-string": "^0.30.12"
86+
"magic-string": "^0.30.13"
8787
},
8888
"peerDependencies": {
8989
"react": ">=16.8.0",

playwright/tests/ssr.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ test.describe("ssr", () => {
1515
"/input",
1616
"/react-router/home",
1717
"/react-router/about",
18+
"/fixtures/RestProps",
19+
"/fixtures/List",
20+
"/intrinsic-elements",
1821
];
1922

2023
test("client-rendered", async ({ page }) => {
4.67 KB
Loading
5.64 KB
Loading
3.79 KB
Loading
4.67 KB
Loading
5.64 KB
Loading
3.79 KB
Loading

0 commit comments

Comments
 (0)