-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
A crash happened between switches of branches #3634
Comments
Thanks for the report. I was able to reproduce it with this test case: require('esbuild').build({
entryPoints: [],
bundle: true,
plugins: [{
name: 'abc',
setup(build) {
build.onStart(() => build.resolve('/foo', {
kind: 'require-call',
resolveDir: 'bar',
}))
}
}],
}) Meaning the problem is a crash when resolving a path in a directory that doesn't exist. |
2 tasks
This was referenced May 21, 2024
This was referenced May 29, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was checking some old stuff and was switching branches back and forth. At some moment I looked to next terminal tab where usually I run build and found next
I am afraid I can't provide a repro. I understand that the above log may not be enough to fix the issue. So I am okay with it just getting closed. I just wanted to report it anyway.
edit: some grammar fixes; esbuild v0.19.12
The text was updated successfully, but these errors were encountered: