Skip to content

Commit

Permalink
Merge branch 'main' into ts
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhdev authored Nov 13, 2024
2 parents 0df8cbe + 959c3c2 commit 2ff32a0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 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.6.3",
"vite": "^5.3.1",
"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 2ff32a0

Please sign in to comment.