Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active February 21, 2016 11:51
Show Gist options
  • Save brunokrebs/268b44f9eca9478c5072 to your computer and use it in GitHub Desktop.
Save brunokrebs/268b44f9eca9478c5072 to your computer and use it in GitHub Desktop.
var gulp = require('gulp');
var concat = require('gulp-concat');
gulp.task('concat-js', function() {
return gulp.src([
'./src/js/wysiwyg.js',
'./src/js/**/!(wysiwyg)*.js'
])
.pipe(concat('wysiwyg.js'))
.pipe(gulp.dest('./dist'));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment