Created
September 28, 2015 15:50
-
-
Save adammcarth/d05f64f65a2662126f6c to your computer and use it in GitHub Desktop.
This file contains 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.task("concat:js", function() { | |
// Loop through each JS collection and run a seperate concat task | |
Object.keys(collections.js).forEach(function(name) { | |
gulp.src(collections.js[name]) | |
.pipe(concatJS("collections/" + name + ".js")) | |
.pipe(gulp.dest(paths.dest.javascript)); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment