Skip to content

Commit

Permalink
chore: migrate svelte to v5 release (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-krebs authored Nov 13, 2024
1 parent 41c8de6 commit 959c3c2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"build": "vite build"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"svelte": "^4.2.18",
"vite": "^5.3.1",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"svelte": "^5.0.0",
"vite": "^5.4.4",
"vite-plugin-web-extension": "^4.1.6",
"webextension-polyfill": "^0.10.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Popup from './pages/Popup.svelte'
import { mount } from "svelte";

new Popup({ target: document.body });
mount(Popup, { target: document.body });
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
"check": "svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@tsconfig/svelte": "^5.0.4",
"@types/webextension-polyfill": "^0.10.0",
"svelte": "^4.2.18",
"svelte-check": "^3.8.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tslib": "^2.6.3",
"typescript": "^5.3.2",
"vite": "^5.3.1",
"typescript": "^5.5.0",
"vite": "^5.4.4",
"vite-plugin-web-extension": "^4.1.6",
"webextension-polyfill": "^0.10.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Popup from './pages/Popup.svelte'
import { mount } from "svelte";

new Popup({ target: document.body });
mount(Popup, { target: document.body });

0 comments on commit 959c3c2

Please sign in to comment.