nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jquery.newstape / gulpfile.js
1 var gulp = require('gulp'),
2     uglify = require('gulp-uglify'),
3     rename = require('gulp-rename'),
4     clean = require('gulp-clean');
5
6 gulp.task('minjs', function() {
7   return gulp.src(['jquery.newstape.js'])
8     .pipe(uglify())
9     .pipe(rename({
10       suffix: ".min"
11     }))
12     .pipe(gulp.dest('dist'));
13 });
14
15 gulp.task('clean', function() {
16   return gulp.src(['dist/**/.*'], {read: false})
17     .pipe(clean());
18 });
19
20 gulp.task('default', ['clean', 'minjs'], function() {
21
22 });