-
Notifications
You must be signed in to change notification settings - Fork 78
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
Land extension fixes #518
Land extension fixes #518
Conversation
@@ -3609,7 +3609,7 @@ declare module "socket:dgram" { | |||
*/ | |||
export class Socket extends EventEmitter { | |||
constructor(options: any, callback: any); | |||
id: bigint; | |||
id: any; |
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.
hmm is this loose typing because of this.id = options?.id || rand64()
?
can we type options bag?
@@ -176,7 +176,7 @@ constexpr auto gPListInfo = R"XML(<?xml version="1.0" encoding="UTF-8"?> | |||
<key>DTSDKBuild</key> | |||
<string>10.13</string> | |||
<key>CFBundleVersion</key> | |||
<string>v{{meta_version}}</string> | |||
<string>{{meta_version}}</string> |
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.
oh good catch!
|
I think we can merge this |
I'll double check with @jwerle today about it (its his commits). |
6b5de3a
to
792889a
Compare
Tests are failing for existing reasons. Landing this now. |
* refactor(src/extension): improve init state and context tree * refactor(src/cli): allow building jsut an extension * refactor(src): clean up / tidy * refactor(include/socket/extension.h): include 'sapi_context_alloc' prototype * refactor(api): clean up, listen 'connect'() for dgram * fix(extension): remove from 'init' list after deinit * refactor(src/extension/extension.cc: use 'std::make_shared' * fix(src/cli/templates.hh): remove 'v' prefix in 'CFBundleVersion' * chore(api/index.d.ts): generate typings * Fix spacing --------- Co-authored-by: Joseph Werle <[email protected]>
@jwerle Looks like these are needed in the latest extension work.