Skip to content

Commit

Permalink
chore: Updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bfanger committed Feb 7, 2024
1 parent 412a87b commit bda41e9
Show file tree
Hide file tree
Showing 3 changed files with 471 additions and 440 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default {

> Extend
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.
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.

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

> Extinguish
Using multiple frontend frameworks adds overhead both in User and Developer experience.
Using multiple frontend frameworks adds overhead in both User and Developer experience.

- Increased download size
- Slower (each framework boundary adds overhead)
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"test:playwright": "playwright test",
"vitest:watch": "vitest watch",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install"
"prepare": "husky || true"
},
"lint-staged": {
"*.{ts,svelte}": [
Expand All @@ -42,18 +42,18 @@
]
},
"devDependencies": {
"@playwright/test": "^1.41.1",
"@playwright/test": "^1.41.2",
"@sveltejs/adapter-static": "^3.0.1",
"@sveltejs/kit": "^2.4.3",
"@sveltejs/kit": "^2.5.0",
"@sveltejs/package": "^2.2.6",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@testing-library/react": "^14.1.2",
"@testing-library/svelte": "^4.0.5",
"@types/node": "^20.11.6",
"@types/react": "^18.2.48",
"@sveltejs/vite-plugin-svelte": "^3.0.2",
"@testing-library/react": "^14.2.1",
"@testing-library/svelte": "^4.1.0",
"@types/node": "^20.11.16",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
Expand All @@ -66,30 +66,30 @@
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-svelte": "^2.35.1",
"happy-dom": "^13.3.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"happy-dom": "^13.3.8",
"husky": "^9.0.10",
"lint-staged": "^15.2.2",
"postcss": "^8.4.34",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.70.0",
"svelte": "^4.2.9",
"svelte": "^4.2.10",
"svelte-check": "^3.6.3",
"svelte2tsx": "^0.7.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1"
"vitest": "^1.2.2"
},
"dependencies": {
"magic-string": "^0.30.5"
"magic-string": "^0.30.7"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"svelte": ">=4.0.0"
"svelte": "4"
},
"svelte": "./dist/index.js",
"files": [
Expand Down
Loading

0 comments on commit bda41e9

Please sign in to comment.