Last active
August 29, 2015 14:27
-
-
Save jeffersonsouza/6b9ca0861c311577ce7e to your computer and use it in GitHub Desktop.
Concat K
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
| /** | |
| * Gulp stuff | |
| */ | |
| gulp.task('css', function () { | |
| gulp.src(paths.sass) // something like a array of scss files [ 'default.scss', 'colors.scss', 'user.scss' ] | |
| .pipe(plugins.sass({errLogToConsole: true})) | |
| .pipe(plugins.minifyCss()) | |
| .pipe('concat') | |
| .pipe(gulp.dest('./www/application.min.css')); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment