-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
fix: build warnings #2562
fix: build warnings #2562
Conversation
@@ -651,7 +651,6 @@ const exports = { | |||
setDefaultResultOrder, | |||
resolve, | |||
reverse, | |||
resolve, |
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.
Duplicate export
@@ -20,7 +20,6 @@ export class PerformanceNodeTiming { | |||
export default { | |||
performance, | |||
PerformanceEntry, | |||
PerformanceEntry, |
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.
Duplicate export
@@ -38,7 +38,6 @@ var repl = { | |||
history: [], | |||
_initialPrompt: "> ", | |||
terminal: true, | |||
cursor: 0, |
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.
Duplicate entry.
@@ -167,7 +167,7 @@ export async function request( | |||
if (typeof url === "string") { | |||
if (query) url = new URL(url); | |||
} else if (typeof url === "object" && url !== null) { | |||
if (!url instanceof URL) { |
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.
Bug, treated as (!url) instanceof URL
Thank you |
Trying to build with esbuild emitted the following warnings