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