Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladfilipro/rig-sass
A rig containing sass utilities
https://github.com/vladfilipro/rig-sass
depricated
Last synced: about 2 months ago
JSON representation
A rig containing sass utilities
- Host: GitHub
- URL: https://github.com/vladfilipro/rig-sass
- Owner: vladfilipro
- Created: 2016-04-23T22:22:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-04-26T18:22:48.000Z (over 8 years ago)
- Last Synced: 2024-10-20T07:12:26.988Z (3 months ago)
- Topics: depricated
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rig-sass
[![Dependency Status](https://david-dm.org/vladfilipro/rig-sass.svg)](https://david-dm.org/vladfilipro/rig-sass)A rig containing sass utilities
## How to use
1. Install rigs package: `npm install rigs`
2. Install rig-sass: `npm install rig-sass`## Available tasks in rig-sass
- `rig-sass__sass`: A task for converting sass files into css files
- properties:
- `sourcemap`: Boolean, when set to TRUE, it will generate sourcemaps
- `minify`: Boolean, when set to TRUE, it will minify the resulting css file
- `rename`: String, represents the extension of the output css file
- `src`: String, refers to sass entry point
- `dest`: String, refers to the output path```
{
taskname: 'rig-sass__sass',
sourcemap: true,
minify: false,
src: './main.scss',
dest: '/styles'
}
```### Generated using [webcase-rig](https://www.npmjs.com/package/webcase-rig) version 1.0.0