Skip to content

Commit bda41e9

Browse files
committed
chore: Updated deps
1 parent 412a87b commit bda41e9

File tree

3 files changed

+471
-440
lines changed

3 files changed

+471
-440
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default {
9191

9292
> Extend
9393
94-
Once you've converted a React component to Svelte, you'd want delete that React component, but some if other React components depended on that component you can use `reactify` to use the new Svelte component as a React component.
94+
Once you've converted a React component to Svelte, you'd want delete that React component, but when other React components depended on that component use `reactify` to convert the Svelte component to a React component.
9595

9696
```jsx
9797
import { reactify } from "svelte-preprocess-react";
@@ -108,7 +108,7 @@ function MyComponent() {
108108

109109
> Extinguish
110110
111-
Using multiple frontend frameworks adds overhead both in User and Developer experience.
111+
Using multiple frontend frameworks adds overhead in both User and Developer experience.
112112

113113
- Increased download size
114114
- Slower (each framework boundary adds overhead)

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"test:playwright": "playwright test",
2929
"vitest:watch": "vitest watch",
3030
"preinstall": "npx only-allow pnpm",
31-
"prepare": "husky install"
31+
"prepare": "husky || true"
3232
},
3333
"lint-staged": {
3434
"*.{ts,svelte}": [
@@ -42,18 +42,18 @@
4242
]
4343
},
4444
"devDependencies": {
45-
"@playwright/test": "^1.41.1",
45+
"@playwright/test": "^1.41.2",
4646
"@sveltejs/adapter-static": "^3.0.1",
47-
"@sveltejs/kit": "^2.4.3",
47+
"@sveltejs/kit": "^2.5.0",
4848
"@sveltejs/package": "^2.2.6",
49-
"@sveltejs/vite-plugin-svelte": "^3.0.1",
50-
"@testing-library/react": "^14.1.2",
51-
"@testing-library/svelte": "^4.0.5",
52-
"@types/node": "^20.11.6",
53-
"@types/react": "^18.2.48",
49+
"@sveltejs/vite-plugin-svelte": "^3.0.2",
50+
"@testing-library/react": "^14.2.1",
51+
"@testing-library/svelte": "^4.1.0",
52+
"@types/node": "^20.11.16",
53+
"@types/react": "^18.2.55",
5454
"@types/react-dom": "^18.2.18",
55-
"@typescript-eslint/eslint-plugin": "^6.19.1",
56-
"@typescript-eslint/parser": "^6.19.1",
55+
"@typescript-eslint/eslint-plugin": "^6.21.0",
56+
"@typescript-eslint/parser": "^6.21.0",
5757
"autoprefixer": "^10.4.17",
5858
"concurrently": "^8.2.2",
5959
"eslint": "^8.56.0",
@@ -66,30 +66,30 @@
6666
"eslint-plugin-only-warn": "^1.1.0",
6767
"eslint-plugin-prettier": "^5.1.3",
6868
"eslint-plugin-svelte": "^2.35.1",
69-
"happy-dom": "^13.3.1",
70-
"husky": "^8.0.3",
71-
"lint-staged": "^15.2.0",
72-
"postcss": "^8.4.33",
73-
"prettier": "^3.2.4",
69+
"happy-dom": "^13.3.8",
70+
"husky": "^9.0.10",
71+
"lint-staged": "^15.2.2",
72+
"postcss": "^8.4.34",
73+
"prettier": "^3.2.5",
7474
"prettier-plugin-svelte": "^3.1.2",
7575
"react": "^18.2.0",
7676
"react-dom": "^18.2.0",
7777
"sass": "^1.70.0",
78-
"svelte": "^4.2.9",
78+
"svelte": "^4.2.10",
7979
"svelte-check": "^3.6.3",
8080
"svelte2tsx": "^0.7.0",
8181
"typescript": "^5.3.3",
8282
"vite": "^5.0.12",
8383
"vite-tsconfig-paths": "^4.3.1",
84-
"vitest": "^1.2.1"
84+
"vitest": "^1.2.2"
8585
},
8686
"dependencies": {
87-
"magic-string": "^0.30.5"
87+
"magic-string": "^0.30.7"
8888
},
8989
"peerDependencies": {
9090
"react": ">=16.8.0",
9191
"react-dom": ">=16.8.0",
92-
"svelte": ">=4.0.0"
92+
"svelte": "4"
9393
},
9494
"svelte": "./dist/index.js",
9595
"files": [

0 commit comments

Comments
 (0)