-
-
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(solidstart): Add solidstart SDK basic package #12730
Conversation
69b1bb2
to
a6a1fe3
Compare
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.
sweet!
@@ -78,7 +78,7 @@ | |||
"build:transpile:watch": "rollup -c rollup.npm.config.mjs --watch", | |||
"build:types:watch": "tsc -p tsconfig.types.json --watch", | |||
"build:tarball": "npm pack", | |||
"circularDepCheck": "madge --circular src/index.ts", | |||
"circularDepCheck": "madge --circular src/index.ts && madge --circular src/solidrouter.ts", |
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.
ah, good catch! 👍
export declare const getClient: typeof clientSdk.getClient; | ||
|
||
export declare function close(timeout?: number | undefined): PromiseLike<boolean>; | ||
export declare function flush(timeout?: number | undefined): PromiseLike<boolean>; | ||
export declare function lastEventId(): string | undefined; | ||
|
||
export declare const continueTrace: typeof clientSdk.continueTrace; |
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.
do all of these still differ, actually? (put differently, does it not work without these being defined?
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.
Closes: #12545, #12546