Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/simonsmith/gulp-suitcss
SUIT CSS preprocessor via gulp
https://github.com/simonsmith/gulp-suitcss
gulp javascript suit-css
Last synced: 23 days ago
JSON representation
SUIT CSS preprocessor via gulp
- Host: GitHub
- URL: https://github.com/simonsmith/gulp-suitcss
- Owner: simonsmith
- License: mit
- Created: 2015-01-12T09:38:08.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T20:39:48.000Z (almost 8 years ago)
- Last Synced: 2024-10-30T02:58:58.371Z (3 months ago)
- Topics: gulp, javascript, suit-css
- Language: JavaScript
- Homepage:
- Size: 43 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-suitcss [![Build Status](https://travis-ci.org/simonsmith/gulp-suitcss.svg?branch=master)](https://travis-ci.org/simonsmith/gulp-suitcss) [![Build status](https://ci.appveyor.com/api/projects/status/ah0mjm381w6p0r5d?svg=true)](https://ci.appveyor.com/project/simonsmith/gulp-suitcss)
> Preprocess CSS with the [suitcss-preprocessor](https://github.com/suitcss/preprocessor)
## Install
```
$ npm install gulp-suitcss --save-dev
```## Usage
```js
const gulp = require('gulp');
const suitcss = require('gulp-suitcss');gulp.task('default', () =>
gulp.src('src/index.css')
.pipe(suitcss({
minify: true,
}))
.pipe(gulp.dest('build'))
);
```## API
### suitcss([options])
#### options
See the [suitcss preprocessor API](https://github.com/suitcss/preprocessor#nodejs).
## Credit
Original version by Casear Chu