PluginProbe
Category Posts Block / 5.1.0
Category Posts Block v5.1.0
5.1.0 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 All 63 releases
category-posts / gulpfile.js

gulpfile.js in Category Posts Block 5.1.0, 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