rollup-plugin-sass
rollup-plugin-sass copied to clipboard
`--quiet -q` flag/option is not respected
all @warn
statements are still visible in the output.
this plugin use dart-sass as default sass compiler and --quiet
flag/option not supported by it. try node-sass with runtime option :)
Does not work either
Hi @jackblackCH:
As comment from https://github.com/sass/node-sass/issues/2265#issuecomment-370198733. --quiet
flag/option only for CLI.
This option is now added to dart-sass (https://sass-lang.com/documentation/cli/dart-sass/#quiet). Moving this to 'needs-triage'.
So turns out the (sass
) JS API doesn't support the quiet
option (just the quietDeps
option):
- https://sass-lang.com/documentation/js-api/types/legacyoptions/
- https://sass-lang.com/documentation/js-api/interfaces/legacyfileoptions/
- https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/
- https://sass-lang.com/documentation/js-api/interfaces/legacysharedoptions/
Closing this issue.