Ruby - Sass compiles CSS from SASS files
sass [options] [INPUT] [OUTPUT]
- Converts SCSS or Sass files to CSS.
- --watch
- Watch files or directories for changes. The location of the generated CSS
can be set using a colon:
- sass --watch
input.sass:output.css
- sass --watch input-dir:output-dir
- --poll
- 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.
- -f, --force
- 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.
- --scss
- Use the CSS-superset SCSS 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 none: no sourcemaps
- -s, --stdin
- Read input from standard input instead of an input file. This is the
default if no input file is specified.
- -E, --default-encoding
ENCODING
- Specify the default encoding for input files.
- --unix-newlines
- Use Unix-style newlines in written files. Always true on Unix.
- -g,
--debug-info
- Emit output that can be used by the FireSass Firebug plugin.
- -l,
--line-numbers
- Emit comments in the generated CSS indicating the corresponding source
line.
--line-comments