-
-
Notifications
You must be signed in to change notification settings - Fork 40
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
[feature] log error details/context to console #14
Comments
This is unfortunate. I didn't include the errors here because esbuild can potentially generate hundreds of errors and I didn't want the exception string to ever be huge. The errors are in an array in the |
@evanw Glad to hear it :) I got around this issue by making // ...
const production = !process.env.ROLLUP_WATCH
export default {
// ...
plugins: [
// ...
production && esbuild({
minify: production,
// target: 'es2015'
}),
// ...
],
} It would be awesome if it were possible to configure how many errors I would want to see in the console, so it could default to |
Just saw this, sorry. This option already exists and is called |
Fixed in #118 |
Currently utilizing this plugin in my Vue app build process and I keep getting very vague error indications making this process virtually useless...
I'm doing some more research into ESBuild in general, however it's unacceptable that this tool should warn me of errors and give me zero context for where the error was actually found...
The documentation doesn't mention anything about a verbose mode either.
The text was updated successfully, but these errors were encountered: