-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: hono adapter * chore: cleanup * chore(hono): change build target to neutral * tests: run recursive tests sequentially * refactor: move core utils on new core package * refactor: move test utils on new tests package
- Loading branch information
Showing
40 changed files
with
2,361 additions
and
383 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -10,7 +10,8 @@ | |
"dev:hattip": "hattip serve ./playground/hattip-entry.ts --client", | ||
"lint": "eslint --ext .js,.jsx,.ts,.tsx .", | ||
"build": "pnpm run -r build", | ||
"test": "pnpm run -r test" | ||
"test": "pnpm run -r --sequential test", | ||
"test:typecheck": "pnpm run -r test:typecheck" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
|
@@ -50,5 +51,10 @@ | |
"tsx": "^4.16.2", | ||
"vite": "^5.3.3" | ||
}, | ||
"pnpm": { | ||
"overrides": { | ||
"@universal-middleware/core": "link:./packages/core" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"imports": { | ||
"@universal-middleware/tests": "../tests/dist", | ||
"mri": "npm:mri", | ||
"zx": "npm:zx", | ||
"wait-port": "npm:wait-port" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.