-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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(deno): add Deno.serve integration #12460
base: develop
Are you sure you want to change the base?
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.
Looks good!
@@ -488,7 +488,7 @@ jobs: | |||
- name: Set up Deno | |||
uses: denoland/[email protected] | |||
with: | |||
deno-version: v1.38.5 | |||
deno-version: v1.x |
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.
jsr wasn't supported on deno 1.38. deno.land/std/... won't receive non-critical updates and jsr is the recommended way
if needed we can lock it to some minor
re-running CI should pass I guess 👀
return new Proxy(handler, { | ||
apply(handlerTarget, handlerThisArg, handlerArgs: Parameters<RawHandler>) { | ||
return withIsolationScope(isolationScope => { | ||
isolationScope.clear(); |
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.
also this line should be removed when #12450 (comment) is resolved
closes #12450
the code is mostly taken from the bun sdk
Before submitting a pull request, please take a look at our
Contributing guidelines and verify:
yarn lint
) & (yarn test
).