-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: new hono package #83
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
A lot of the comments can wait until we do a more thorough reworking of stl-api, but the base path issue needs to be looked into
packages/hono/src/honoPlugin.ts
Outdated
return app.all("*", async (c) => { | ||
try { | ||
const match = routeMatcher.match(c.req.method, c.req.path); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we may need to check to see if the stl-api definition has any base paths defined
As far as publishing, I believe the CI job does that, but you can also manually run the It iterates over everything inside of for (const dir of packageDirs) {
await gitPublish(dir, { dryRun });
} |
adds a new hono package, similar to the express / next packages. tested it locally, but we should write better tests eventually