Skip to content
This repository has been archived by the owner on Jan 23, 2021. It is now read-only.

sindresorhus/gulp-styl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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