refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / sass / README.md
1 ---
2 title: sass
3 homepage: https://github.com/sass/dart-sass
4 tagline: |
5   sass: The reference implementation of Sass, written in Dart. Sass makes CSS fun again.
6 ---
7
8 To update or switch versions, run `webi sass@stable` (or `@v2`, `@beta`, etc).
9
10 ## Cheat Sheet
11
12 > Dart Sass has replaced Ruby Sass as the canonical implementation of the Sass
13 > language.
14
15 ### Command format:
16
17 ```bash
18 sass <input.scss> [output.css]
19 ```
20
21 or
22
23 ```bash
24 sass <input.scss>:<output.css> <input/>:<output/> <dir/>
25 ```
26
27 | Input and Output | Functionality                                             |
28 | ---------------- | --------------------------------------------------------- |
29 | --[no-]stdin     | Read the stylesheet from stdin.                           |
30 | --[no-]indented  | Use the indented syntax for input from stdin.             |
31 | -I, --load-path= | A path to use when resolving imports.                     |
32 | -s, --style=     | Output style.                                             |
33 | --[no-]charset   | Emit a @charset or BOM for CSS with non-ASCII characters. |
34 | --[no-]error-css | When an error occurs, emit a stylesheet describing it.    |
35 | --update         | Only compile out-of-date stylesheets.                     |