From 6418030fc3edb34c0e1abbb7b89180fc6d435b36 Mon Sep 17 00:00:00 2001 From: Joshua Hall Date: Fri, 19 Jul 2019 09:31:37 -0500 Subject: [PATCH 1/2] Add Scoop to the list of install options --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index cbe44a7f7..6295a0f1a 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ A [Dart][dart] implementation of [Sass][sass]. **Sass makes CSS fun again**. * [Using Dart Sass](#using-dart-sass) * [From Chocolatey (Windows)](#from-chocolatey-windows) + * [From Scoop (Windows)](#from-scoop-windows) * [From Homebrew (OS X)](#from-homebrew-os-x) * [Standalone](#standalone) * [From npm](#from-npm) @@ -50,6 +51,17 @@ choco install sass That'll give you a `sass` executable on your command line that will run Dart Sass. +### From Scoop (Windows) + +If you use [the Scoop package manager](https://github.com/lukesampson/scoop) for Windows, you can install Dart Sass by running + +```cmd +scoop install sass +``` + +That'll give you a `sass` executable on your command line that will run Dart +Sass. + ### From Homebrew (OS X) If you use [the Homebrew package manager](https://brew.sh/) for Mac OS X, you From 26b001cc45a14e9b654bb25a7ae16e6471e9115c Mon Sep 17 00:00:00 2001 From: Joshua Hall Date: Tue, 23 Jul 2019 08:28:29 -0500 Subject: [PATCH 2/2] Merged the Chocolatey and Scoop install sections --- README.md | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6295a0f1a..a25e2342a 100644 --- a/README.md +++ b/README.md @@ -22,8 +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 Scoop (Windows)](#from-scoop-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) @@ -39,21 +38,17 @@ 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 ``` -That'll give you a `sass` executable on your command line that will run Dart -Sass. - -### From Scoop (Windows) - -If you use [the Scoop package manager](https://github.com/lukesampson/scoop) for Windows, you can install Dart Sass by running +or ```cmd scoop install sass