All Projects β†’ sindresorhus β†’ gulp-styl

sindresorhus / gulp-styl

Licence: MIT license
Preprocess CSS with Styl

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to gulp-styl

scarlet
πŸ’‹ Style sheets preprocessor similar to Stylus.
Stars: ✭ 13 (-38.1%)
Mutual labels:  preprocessor, css-preprocessor
Stylus
Expressive, robust, feature-rich CSS language built for nodejs
Stars: ✭ 10,817 (+51409.52%)
Mutual labels:  preprocessor, styl
gulp-rework
Preprocess CSS with Rework
Stars: ✭ 30 (+42.86%)
Mutual labels:  preprocessor, deprecated
roweb
β›” [DEPRECATED] Active at https://github.com/ropensci/roweb2
Stars: ✭ 18 (-14.29%)
Mutual labels:  deprecated
jscc
Tiny and powerful preprocessor for conditional comments and replacement of compile-time variables in text files
Stars: ✭ 44 (+109.52%)
Mutual labels:  preprocessor
node-pagerduty
⛔️ DEPRECATED - PagerDuty v2 API Wrapper for Node
Stars: ✭ 19 (-9.52%)
Mutual labels:  deprecated
biggus
β›” [DEPRECATED] Virtual large arrays and lazy evaluation.
Stars: ✭ 56 (+166.67%)
Mutual labels:  deprecated
tls
πŸ”’ Non-blocking, event-driven TLS built on OpenSSL & macOS security.
Stars: ✭ 26 (+23.81%)
Mutual labels:  deprecated
inclusify
DEPRECATED - Go CLI which can be used to update the default branch name on any GitHub repo
Stars: ✭ 36 (+71.43%)
Mutual labels:  deprecated
homebridge-mi-ac-partner
[DEPRECATED] A Xiaomi Mi ac partner plugin for Homebridge.
Stars: ✭ 29 (+38.1%)
Mutual labels:  deprecated
mpa-frontend-template
πŸ”₯ Template based on webpack, pug, stylus, es6, postcss for multi page applications
Stars: ✭ 27 (+28.57%)
Mutual labels:  styl
webpack-react-boilerplate
A boilerplate for using webpack and react.
Stars: ✭ 33 (+57.14%)
Mutual labels:  deprecated
react-i18next-phraseapp
Library support to use react-i18next with the Phrase In-Context Editor - DEPRECATED
Stars: ✭ 14 (-33.33%)
Mutual labels:  deprecated
resizeend
Debounced JavaScript resize events
Stars: ✭ 60 (+185.71%)
Mutual labels:  deprecated
npmlint
[DEPRECATED] Lint your npm package
Stars: ✭ 57 (+171.43%)
Mutual labels:  deprecated
jest-badges-readme
Creates a group of coverage badges from Jest into your README
Stars: ✭ 30 (+42.86%)
Mutual labels:  deprecated
django-snow
ServiceNow Ticket Management App for Django based projects
Stars: ✭ 16 (-23.81%)
Mutual labels:  deprecated
snapup-android
Android application to take photos, then post them using the Meetup API.
Stars: ✭ 14 (-33.33%)
Mutual labels:  deprecated
lazybones-aem-templates
🚨[DEPRECATED] Lazybones templates for Adobe Experience Manager🚨
Stars: ✭ 68 (+223.81%)
Mutual labels:  deprecated
Optimizely-iOS-SDK
Optimizely Classic iOS SDK. For Optimizely X Mobile go here:
Stars: ✭ 31 (+47.62%)
Mutual labels:  deprecated

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].