bun icon indicating copy to clipboard operation
bun copied to clipboard

Don't log .env reads by default or have ability to hide them

Open nikitavoloboev opened this issue 2 years ago • 0 comments

What is the problem this feature would solve?

If there is .env in folder when I try to run my script with bun, I get:

 bun main.ts
[0.32ms] ".env"
test

And this happens every time I run it. I would like to not see this. If not by default, then at least by passing some flag. I tried --silent and -q for quiet, both failed.

I would argue default behaviour should be clean stdout output or error.

What is the feature you are proposing to solve the problem?

 bun main.ts
test

Would be perfect. Or:

 bun -q main.ts
test

That's what Deno uses for example.

nikitavoloboev avatar Dec 26 '22 12:12 nikitavoloboev