Last active
January 1, 2016 10:56
-
-
Save 1999/2367332bcfff496b139f 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
'use strict'; | |
let gulp = require('gulp'); | |
let concat = require('gulp-concat'); | |
let sass = require('gulp-sass'); | |
gulp.task('css', () => { | |
gulp | |
.src([ | |
'app/components/globals/globals.scss', | |
'app/components/**/*.scss', | |
'bower_components/dependency-lib1/**/*.css', | |
'bower_components/dependency-lib2/**/*.css' | |
]) | |
.pipe(concat('build.css')) | |
.pipe(sass().on('error', sass.logError)) | |
.pipe(gulp.dest('./')); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment