This package has been deprecated

Author message:

Deprecated as the Styl project is no longer maintained.

gulp-styl

3.0.0 • Public • Published

Deprecated

Deprecated as the Styl project is no longer maintained.


gulp-styl Build Status

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
Default: false

Utilize CSS whitespace transformations.

License

MIT © Sindre Sorhus

Package Sidebar

Install

npm i gulp-styl

Weekly Downloads

9

Version

3.0.0

License

MIT

Unpacked Size

4 kB

Total Files

4

Last publish

Collaborators

  • sindresorhus