use bun
This commit is contained in:
parent
1ccba3a07d
commit
cd7f487b53
2 changed files with 7 additions and 10 deletions
9
.github/workflows/deploy.yml
vendored
9
.github/workflows/deploy.yml
vendored
|
@ -23,16 +23,15 @@ jobs:
|
|||
with:
|
||||
deno-version: v1.x
|
||||
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v4
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
with:
|
||||
node-version: lts/*
|
||||
bun-version: latest
|
||||
|
||||
- name: Install step
|
||||
run: 'npm install'
|
||||
run: 'bun install'
|
||||
|
||||
- name: Build step
|
||||
run: 'npm run build'
|
||||
run: 'bun build'
|
||||
|
||||
- name: Upload to Deno Deploy
|
||||
uses: denoland/deployctl@v1
|
||||
|
|
|
@ -35,13 +35,11 @@
|
|||
"tailwindcss": "^3.4.10",
|
||||
"typescript": "^5.0.0",
|
||||
"vite": "^5.0.3",
|
||||
"zod": "^3.23.8"
|
||||
"zod": "^3.23.8",
|
||||
"@petamoriken/float16": "^3.8.7"
|
||||
},
|
||||
"type": "module",
|
||||
"trustedDependencies": [
|
||||
"svelte-preprocess"
|
||||
],
|
||||
"dependencies": {
|
||||
"@petamoriken/float16": "^3.8.7"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue