Skip to content

Commit 4dc5443

Browse files
chore: 🤖 update (#100)
1 parent c05d6fb commit 4dc5443

File tree

5 files changed

+1381
-1986
lines changed

5 files changed

+1381
-1986
lines changed

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Pnpm
2323
uses: pnpm/action-setup@v2
2424
with:
25-
version: 8.10.5
25+
version: 10.2.1
2626

2727
- name: Set up Node.js
2828
uses: actions/setup-node@v4

‎apps/svelte-js/src/main.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
import './app.css'
2+
import { mount } from 'svelte';
23
import App from './App.svelte'
34

4-
const app = new App({
5-
target: document.getElementById('app'),
6-
})
5+
const app = mount(App, { target: document.getElementById("app") });
76

8-
export default app
7+
export default app;

‎apps/svelte-ts/src/main.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import './app.css'
2+
import { mount } from 'svelte';
23
import App from './App.svelte'
34

4-
const app = new App({
5-
target: document.getElementById('app')!,
6-
})
5+
const app = mount(App, { target: document.getElementById("app")! });
6+
7+
export default app;
78

8-
export default app

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"devDependencies": {
1414
"@playwright/test": "^1.47.0",
1515
"playwright": "^1.45.2",
16-
"rolldown-vite": "0.3.2",
16+
"rolldown-vite": "https://pkg.pr.new/rolldown/vite/vite@07af24adcc541d9254f1504749e4cc4910c0dc8c",
1717
"tree-kill": "^1.2.2"
1818
}
1919
}

0 commit comments

Comments
 (0)