This commit is contained in:
Chad Freeman 2024-08-17 14:26:41 -04:00
parent 1ccba3a07d
commit cd7f487b53
2 changed files with 7 additions and 10 deletions

View file

@ -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

View file

@ -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"
}
]
}