I am new to Gulp and wondering how can I minify (concatinate) my collection to single file instead of every file separately.
Example
var gulp = require('gulp');
var uglify = require('gulp-uglify');
gulp.task('minify', function () {
gulp.src([
'content/plugins/jquery/jquery-2.1.1.js',
'content/plugins/jquery/jquery-ui.js',
'content/js/client.js'])
.pipe(uglify())
.pipe(gulp.dest('content/js/client.min.js')) // It will create folder client.min.js
});
gulp.task('default', ['minify']);
As you can see I'm trying to minify 3 javascript files and then output them into one client.min.js
. Is it possible?
Lets try gulp-concat-util for joining scripts. It's similar to concat, but have some helpers to glue files. There is special helper to concatinate scripts.
Instead of going through a lots of tricky things, I recommend you getting
laravel-elixir
. It is compiling sass, less, babel, coffescript and even adding something that you want with not just JavaScript but also with css. All the code that you will need will be:This plugin will help gulp-concat.
Usage: