-
Notifications
You must be signed in to change notification settings - Fork 6
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
Unnecessary console.log #11
Comments
It doesn't really make sense to use globify and output to stdout, since the whole purpose of globify is to output multiple bundles. Can you elaborate on your use-case? |
I just need the first feature, Windows glob support. Features
|
Ah, ok. That's totally valid. Thanks for the clarification. I've always used the |
Thanks. Your fix sounds good. Sorry if I came off as caustic in the first comment. Working with browserify and co on Windows has been problematic and I spent that day looking at more fun issues with Windows like __dirname being /foo\bar\ and such 😬 |
Ran across this issue today, the console.log breaks stdout when piping to other tools that expect a Browserify bundle piped into them. |
https://github.com/BigstickCarpet/globify/blob/master/lib/index.js#L49
Why is this here? It makes outputting to stdout instead of using --outfile useless because stdout contains a command before the browserify output.
The text was updated successfully, but these errors were encountered: