complete-c scss -s'?'-s h -lhelp-f-d"Show help message."
# -v, --version Print the Sass version.
complete-c scss -s v -l version -f-d"Print the Sass version."
# Watching and Updating:
# --watch Watch files or directories for changes.
# The location of the generated CSS can be set using a colon:
# scss --watch input.scss:output.css
# scss --watch input-dir:output-dir
complete-c scss -l watch -d"Watch files or directories for changes. The location of the generated CSS can be set using a colon: input.scss:output.css input-dir:output-dir"
# --poll Check for file changes manually, rather than relying on the OS.
# Only meaningful for --watch.
complete-c scss -l poll -d"Check for file changes manually, rather than relying on the OS. Only meaningful for --watch."
# --update Compile files or directories to CSS.
# Locations are set like --watch.
complete-c scss -l update -d"Compile files or directories to CSS. The location of the generated CSS can be set using a colon: input.scss:output.css input-dir:output-dir"
# -f, --force Recompile every Sass file, even if the CSS file is newer.
# Only meaningful for --update.
complete-c scss -s f -l force -d"Recompile every Sass file, even if the CSS file is newer. Only meaningful for --update."
# --stop-on-error If a file fails to compile, exit immediately.
# Only meaningful for --watch and --update.
complete-c scss -l stop-on-error -d"If a file fails to compile, exit immediately. Only meaningful for --watch and --update."
# Input and Output:
# --sass Use the indented Sass syntax.
complete-c scss -l sass -d"Use the indented Sass syntax."
# --sourcemap=TYPE How to link generated output to the source files.
# auto (default): relative paths where possible, file URIs elsewhere
# file: always absolute file URIs
# inline: include the source text in the sourcemap