PluginProbe
Category Posts Block / trunk
Category Posts Block vtrunk
5.0.0 trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.2 2.3 3.1 3.2 3.3 4.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 All 62 releases
category-posts / gulpfile.js

gulpfile.js in Category Posts Block trunk, at gulpfile.js

17 lines 414 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 var gulp = require('gulp');
2 var uglify = require('gulp-uglify');
3 var rename = require("gulp-rename");
4
5 gulp.task( 'default', [ 'scripts' ] )
6
7 // Gulp task to minify JavaScript files
8 gulp.task('scripts', function() {
9 return gulp.src(['./js/**/*.js', '!./js/**/*.min.js'])
10 // Minify the file
11 .pipe(uglify())
12 .pipe(rename({suffix: '.min'}))
13 .pipe(gulp.dest(function(file) {
14 return file.base;
15 }));
16 });
17