-
-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(server): swap pnpm workspaces for bun workspaces, removal of web…
…pack
- Loading branch information
1 parent
7c9b7c3
commit c098f36
Showing
442 changed files
with
1,726 additions
and
68,997 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[install] | ||
peer = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Bun.serve({ | ||
fetch(req) { | ||
return new Response("Bun!"); | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
{ | ||
"$schema": "https://biomejs.dev/schemas/1.6.0/schema.json", | ||
"extends": ["../../biome.json"] | ||
"extends": ["../../biome.json"], | ||
"linter": { | ||
"enabled": true, | ||
"rules": { | ||
"style": { | ||
"useImportType": "error" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// We need this in order to use @Decorators | ||
// DO NOT CHANGE THE LINE SPACING OF THE IMPORTS | ||
// OR THE LINTER WILL REORDER THEM | ||
import 'reflect-metadata'; | ||
|
||
import { startServer } from './src/server'; | ||
|
||
// Additional initializations can go here | ||
console.log('Additional initializations or logic before starting the server.'); | ||
|
||
// Now explicitly start the server | ||
startServer().then(() => { | ||
console.log('Server started successfully.'); | ||
}).catch((error) => { | ||
console.error('Failed to start the server:', error); | ||
}); |
Oops, something went wrong.