Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jmooring/dart-sass-snap

A Snap package to install Dart Sass
https://github.com/jmooring/dart-sass-snap

dart-sass sass snap

Last synced: 3 months ago
JSON representation

A Snap package to install Dart Sass

Awesome Lists containing this project

README

        

# Snap package for Dart Sass

[![dart-sass](https://snapcraft.io/dart-sass/badge.svg)](https://snapcraft.io/dart-sass)

Dart Sass is the reference implementation of Sass, written in Dart.

Sass is a style sheet language that is transpiled to CSS. It allows you to use variables, nested rules, mixins, functions, and more, all with a fully CSS-compatible syntax. Sass helps keep large style sheets well-organized and makes it easy to share design within and across projects.

Documentation:

Project:

Snap package:

## Install and remove

Use the commands below to install or remove:

```text
sudo snap install dart-sass
sudo snap remove dart-sass
```

## Update

Snap packages that you install are automatically updated when a new version is available.

## Usage

To transpile Sass to CSS:

```text
dart-sass in.scss out.css
```

To create an alias from `sass` to `dart-sass`:

```text
sudo snap alias dart-sass sass
```

To remove the alias:

```text
sudo snap unalias sass
```