UNPKG

wdt-loading

Version:

Asana like application loading screen with custom phrases support

19 lines (16 loc) 493 B
var gulp = require('gulp'), bump = require('gulp-bump'), rename = require('gulp-rename'), uglify = require('gulp-uglify'); gulp.task('bump', function () { return gulp.src(['wdtLoading.js', 'package.json']) .pipe(bump({type: 'patch'})) .pipe(gulp.dest('./')); }); gulp.task('uglify', ['bump'], function() { return gulp.src('wdtLoading.js') .pipe(uglify({preserveComments: 'license'})) .pipe(rename({suffix: ".min"})) .pipe(gulp.dest('./')); }); gulp.task('build', ['uglify']);