Skip to content

Instantly share code, notes, and snippets.

@phillip-haydon
Created February 2, 2014 17:35
Show Gist options
  • Save phillip-haydon/8771892 to your computer and use it in GitHub Desktop.
Save phillip-haydon/8771892 to your computer and use it in GitHub Desktop.
glup bundler
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