Skip to content

Commit 8e52c31

Browse files
committed
chore: update project configuration and dependencies
- Removed bun.lock from .gitignore for better dependency management. - Updated package.json to remove the react engine requirement. - Changed deployment workflow to use bun for installing dependencies and building the project.
1 parent 73110d2 commit 8e52c31

4 files changed

Lines changed: 807 additions & 6 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
node-version: '22'
2020

2121
- name: Install dependencies
22-
run: yarn
22+
run: bun install
2323

2424
- name: Build project
25-
run: yarn build:prod
25+
run: bun run build:prod
2626

2727
- name: Add known hosts
2828
run: |

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@
22
.vscode/*
33
node_modules
44
dist
5-
bun.lock
65
*.DS_Store
76
*.idea
87
.vscode
9-
*.lock
108
.env
119
.env.local
1210
.env.development.local

0 commit comments

Comments
 (0)