-
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
Feature request: Output some build results #631
Comments
Thanks for asking for this. This has been a request in the past from others as well and is something I have also wanted on occasion. I just added a new flag for this: I chose |
Looks neat @evanw . Thank you! 🙂 |
I personally don't use |
This option was removed. Instead, esbuild now just always prints a summary by default. This has been the case for over a year now. This change happened in esbuild version 0.9.0, released in March 2021. |
Hello @evanw , thank you for your answer. I don't see a summary when I use esbuild v0.15.13. Here is my build script:
Am I doing something wrong? |
You are missing |
Thanks a lot, it's working now! |
On a successful run
esbuild
CLI will currently output nothing and exit with 0 status code.This is GREAT actually, however I'd appreciate some output either via
--log-level=info
or a new flag (e.g.,--verbose
).For the most part I am looking for some output which indicates which files have been bundled (source & destination), how much it took to process each file and overall time spent, etc.
Thanks.
The text was updated successfully, but these errors were encountered: