Awesome
Deprecated
Deprecated as the Styl project is no longer maintained.
gulp-styl
Preprocess CSS with Styl
Issues with the output should be reported on the Styl issue tracker.
Install
$ npm install --save-dev gulp-styl
Usage
const gulp = require('gulp');
const styl = require('gulp-styl');
const inline = require('rework-inline');
gulp.task('default', () =>
gulp.src('src/app.css')
.pipe(styl(inline()))
.pipe(gulp.dest('dist'))
);
API
The compress
option from Styl is intentionally missing. A separate task like gulp-csso will do a much better job.
styl(plugin, [plugin…], [options])
Plugins are supplied as arguments. Optionally supply an object with options as the last argument.
options
Type: Object
whitespace
Type: boolean
<br>
Default: false
Utilize CSS whitespace transformations.
License
MIT © Sindre Sorhus