Open marksmccann opened 5 years ago
This may just be my ignorance. But, when should we be consoling messages versus throwing errors. Is one better then the other? Should we be using a combination of both?
node-sass's CLI use Emitters to console out errors and messages: https://github.com/sass/node-sass/blob/master/bin/node-sass
node-sass
Should we replicate this behavior and add the quiet feature to our Node API? Or is throwing error's enough?
This may just be my ignorance. But, when should we be consoling messages versus throwing errors. Is one better then the other? Should we be using a combination of both?
node-sass
's CLI use Emitters to console out errors and messages: https://github.com/sass/node-sass/blob/master/bin/node-sassShould we replicate this behavior and add the quiet feature to our Node API? Or is throwing error's enough?