Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jmooring/dart-sass-snap
- Owner: jmooring
- License: mit
- Created: 2023-06-09T03:34:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-16T22:26:34.000Z (9 months ago)
- Last Synced: 2024-05-16T23:36:24.414Z (9 months ago)
- Topics: dart-sass, sass, snap
- Homepage:
- Size: 29.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```