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:
|
with:
|
||||||
deno-version: v1.x
|
deno-version: v1.x
|
||||||
|
|
||||||
- name: Install Node.js
|
- uses: oven-sh/setup-bun@v2
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
with:
|
||||||
node-version: lts/*
|
bun-version: latest
|
||||||
|
|
||||||
- name: Install step
|
- name: Install step
|
||||||
run: 'npm install'
|
run: 'bun install'
|
||||||
|
|
||||||
- name: Build step
|
- name: Build step
|
||||||
run: 'npm run build'
|
run: 'bun build'
|
||||||
|
|
||||||
- name: Upload to Deno Deploy
|
- name: Upload to Deno Deploy
|
||||||
uses: denoland/deployctl@v1
|
uses: denoland/deployctl@v1
|
||||||
|
|
|
@ -35,13 +35,11 @@
|
||||||
"tailwindcss": "^3.4.10",
|
"tailwindcss": "^3.4.10",
|
||||||
"typescript": "^5.0.0",
|
"typescript": "^5.0.0",
|
||||||
"vite": "^5.0.3",
|
"vite": "^5.0.3",
|
||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8",
|
||||||
|
"@petamoriken/float16": "^3.8.7"
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"trustedDependencies": [
|
"trustedDependencies": [
|
||||||
"svelte-preprocess"
|
"svelte-preprocess"
|
||||||
],
|
]
|
||||||
"dependencies": {
|
|
||||||
"@petamoriken/float16": "^3.8.7"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue