Skip to content

Commit

Permalink
chore: 🤖 update (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
IWANABETHATGUY authored Feb 8, 2025
1 parent c05d6fb commit 4dc5443
Show file tree
Hide file tree
Showing 5 changed files with 1,381 additions and 1,986 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Pnpm
uses: pnpm/action-setup@v2
with:
version: 8.10.5
version: 10.2.1

- name: Set up Node.js
uses: actions/setup-node@v4
Expand Down
7 changes: 3 additions & 4 deletions apps/svelte-js/src/main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import './app.css'
import { mount } from 'svelte';
import App from './App.svelte'

const app = new App({
target: document.getElementById('app'),
})
const app = mount(App, { target: document.getElementById("app") });

export default app
export default app;
8 changes: 4 additions & 4 deletions apps/svelte-ts/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import './app.css'
import { mount } from 'svelte';
import App from './App.svelte'

const app = new App({
target: document.getElementById('app')!,
})
const app = mount(App, { target: document.getElementById("app")! });

export default app;

export default app
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"devDependencies": {
"@playwright/test": "^1.47.0",
"playwright": "^1.45.2",
"rolldown-vite": "0.3.2",
"rolldown-vite": "https://pkg.pr.new/rolldown/vite/vite@07af24adcc541d9254f1504749e4cc4910c0dc8c",
"tree-kill": "^1.2.2"
}
}
Loading

0 comments on commit 4dc5443

Please sign in to comment.