Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Scoop to the list of install options #772

Merged
merged 3 commits into from Jul 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 10 additions & 3 deletions README.md
Expand Up @@ -22,7 +22,7 @@ A [Dart][dart] implementation of [Sass][sass]. **Sass makes CSS fun again**.
[sass]: https://sass-lang.com/

* [Using Dart Sass](#using-dart-sass)
* [From Chocolatey (Windows)](#from-chocolatey-windows)
* [From Chocolatey or Scoop (Windows)](#from-chocolatey-or-scoop-windows)
* [From Homebrew (OS X)](#from-homebrew-os-x)
* [Standalone](#standalone)
* [From npm](#from-npm)
Expand All @@ -38,15 +38,22 @@ A [Dart][dart] implementation of [Sass][sass]. **Sass makes CSS fun again**.
There are a few different ways to install and run Dart Sass, depending on your
environment and your needs.

### From Chocolatey (Windows)
### From Chocolatey or Scoop (Windows)

If you use [the Chocolatey package manager](https://chocolatey.org/) for
If you use [the Chocolatey package manager](https://chocolatey.org/)
or [the Scoop package manager](https://github.com/lukesampson/scoop) for
Windows, you can install Dart Sass by running

```cmd
choco install sass
```

or

```cmd
scoop install sass
```

That'll give you a `sass` executable on your command line that will run Dart
Sass.

Expand Down