Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rewrite errorResponse, and add a way to inject server into plugin #40

Merged
merged 19 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
- add update all dependencies ( using pnpm )
- update dependencies
  • Loading branch information
armada45-pixel committed Apr 23, 2024
commit 8b35de699b2ab4c9870af3a4f859e0a7871e16a9
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,9 @@ dist
.svelte-kit

# End of https://www.toptal.com/developers/gitignore/api/node,macos

#lock file
package-lock.json
pnpm-lock.yaml
yaml.lock
bun.lockb
Binary file modified bun.lockb
Binary file not shown.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"scripts": {
"dev": "DEBUG=* bun run --hot example/basic.ts",
"dev:multi": "DEBUG=* bun run --hot example/multiInstance.ts",
"build": "rm -rf dist && tsc --project tsconfig.esm.json"
"build": "rm -rf dist && tsc --project tsconfig.esm.json",
"updateall": "pnpm i && pnpm update -L && bun i"
},
"keywords": [
"elysia",
Expand All @@ -41,14 +42,14 @@
"lru-cache": "10.2.0"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@elysiajs/swagger": "^1.0.3",
"@changesets/cli": "2.27.1",
"@elysiajs/swagger": "^1.0.4",
"@types/debug": "^4.1.12",
"bun-types": "^1.0.14",
"elysia": "1.0.0",
"bun-types": "^1.1.4",
"elysia": "1.0.14",
"elysia-ip": "^1.0.3",
"prettier": "^2.8.4",
"typescript": "^5.3.2"
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"peerDependencies": {
"elysia": ">= 1.0.0"
Expand Down