Last active
March 3, 2016 08:20
-
-
Save Xavka/1f370683382d63d244bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var postcss = require('gulp-postcss'); | |
gulp.task('css', function () { | |
var plugins = [ | |
]; | |
return gulp.src('./src/*.css') | |
.pipe(postcss(plugins)) | |
.pipe(gulp.dest('./dest')); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment