Skip to content

Commit fc62863

Browse files
committed
1 parent 0b37b80 commit fc62863

5 files changed

Lines changed: 96 additions & 1597 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v3
19-
- uses: actions/setup-node@v3
20-
with:
21-
node-version: 20
22-
- run: corepack enable
23-
- run: yarn install
24-
- run: yarn run build
19+
- uses: oven-sh/setup-bun@v2
20+
- run: bun install --frozen-lockfile
21+
- run: bun run build
2522
- uses: actions/upload-pages-artifact@v1
2623
with:
2724
path: ./dist

bun.lock

Lines changed: 91 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "OpenCartonaut",
33
"private": true,
4-
"packageManager": "yarn@4.3.0",
54
"type": "module",
65
"license": "GPL-3.0-or-later",
76
"version": "1.0.0",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ https://simon04.github.io/OpenCartonaut/
1212
## Contributing
1313

1414
```sh
15-
yarn
16-
yarn dev
15+
bun install
16+
bun run dev
1717
open http://localhost:5173/
1818
```
1919

0 commit comments

Comments
 (0)