Skip to content

Instantly share code, notes, and snippets.

@jeffersonsouza
Last active August 29, 2015 14:27
Show Gist options
  • Select an option

  • Save jeffersonsouza/6b9ca0861c311577ce7e to your computer and use it in GitHub Desktop.

Select an option

Save jeffersonsouza/6b9ca0861c311577ce7e to your computer and use it in GitHub Desktop.
Concat K
/**
* 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