Skip to content

Instantly share code, notes, and snippets.

@ArtemPitov
Created January 16, 2016 00:42
Show Gist options
  • Save ArtemPitov/f7582656e39a02a1c833 to your computer and use it in GitHub Desktop.
Save ArtemPitov/f7582656e39a02a1c833 to your computer and use it in GitHub Desktop.
var gulp = require('gulp'),
stylus = require('gulp-stylus'),
nib = require('nib'),
autoprefixer = require('gulp-autoprefixer'),
csscomb = require('gulp-csscomb');
gulp.task('styles', function() {
gulp.src('./stylus/*.styl')
.pipe(stylus({ use: [nib()] }))
.pipe(csscomb()) // Plugin https://www.npmjs.com/package/gulp-csscomb
.pipe(autoprefixer({
browsers: ['> 1%', 'last 2 versions', 'Firefox ESR', 'ie 8-11'],
})) // Plugin https://www.npmjs.com/package/gulp-autoprefixer
.pipe(gulp.dest('./css'))
});
// Watch stylus
gulp.task('watch', function() {
gulp.watch('*/**.styl', ['styles']);
});
gulp.task('default', ['watch']);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment