purescript-deprecated / gulp-purescript

Gulp plugin providing PureScript compiler tasks
34 stars 8 forks source link

Warnings are hidden #51

Closed garyb closed 9 years ago

garyb commented 9 years ago

Currently no warnings are printed by the psc task, I think this comes from the change to reduce the verbosity of the output.

ethul commented 9 years ago

Good catch. Does it work adding the --verbose flag?

garyb commented 9 years ago

Yep, that brings them through.

I think the psc verbosity has toned down a lot since the output was silenced - it only dumps reading/writing messages when its own verbose flag is enabled now, so we might be able to just show the whole output again anyway.

ethul commented 9 years ago

Thanks for checking. We could flip the argument to --silent. I will take a look.

garyb commented 9 years ago

As of the new v0.7.2 release warning are printed to stderr rather than stdout if that makes things any easier?

ethul commented 9 years ago

Thanks for the heads up @garyb. Warnings should now be displayed properly.

garyb commented 9 years ago

Great! Thanks for the quick turnaround. I can see just how many little mistakes I'm making now :wink:

ethul commented 9 years ago

Welcome, glad it works!