Created
February 2, 2014 17:35
-
-
Save phillip-haydon/8771892 to your computer and use it in GitHub Desktop.
glup bundler
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 concat = require('gulp-concat'); | |
gulp.task('scripts', function() { | |
gulp.src('./directives/*.js') | |
.pipe(concat("directives.js")) | |
.pipe(gulp.dest('./scripts/')) | |
}); | |
gulp.run('scripts'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment