Skip to content

Commit

Permalink
fix: move to bun
Browse files Browse the repository at this point in the history
  • Loading branch information
benpsnyder committed Apr 7, 2024
1 parent ab37ab1 commit b9a295b
Show file tree
Hide file tree
Showing 267 changed files with 1,124 additions and 68,464 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ node_modules/
# Production env file
.env

test-results/
test-results/

bun.lockb
2 changes: 2 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[install]
peer = true
5 changes: 5 additions & 0 deletions index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bun.serve({
fetch(req) {
return new Response("Bun!");
},
});
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"name": "bigcapital-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:server": "lerna run build --scope \"@bigcapital/server\"",
Expand All @@ -18,6 +15,7 @@
"serve:server": "lerna run serve --scope \"@bigcapital/server\"",
"test:e2e": "playwright test"
},
"workspaces": ["packages/*"],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
Expand All @@ -30,6 +28,10 @@
"@commitlint/config-lerna-scopes": "^17.8.1",
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.43.0",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.12.5",
"bun": "^1.1.2",
"bun-types": "^1.1.2",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"nx": "^18.2.3"
Expand Down
Binary file added packages/server/.DS_Store
Binary file not shown.
Loading

0 comments on commit b9a295b

Please sign in to comment.