Skip to content

Instantly share code, notes, and snippets.

@thomasJang
Created March 22, 2017 06:55
Show Gist options
  • Save thomasJang/ced320b69017a3a529c5d857ac78a54b to your computer and use it in GitHub Desktop.
Save thomasJang/ced320b69017a3a529c5d857ac78a54b to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var concat = require('gulp-concat');
gulp.task('concat', function(){
gulp.src('src/js/*.js')
.pipe(concat('all.js'))
.pipe(gulp.dest('dist'));
});
gulp.task('default', ['concat'], function(){
gulp.watch('src/js/**/*.js', ['concat']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment