summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jquery.newstape/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/jquery.newstape/gulpfile.js')
-rw-r--r--ecomp-portal-FE/client/bower_components/jquery.newstape/gulpfile.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/ecomp-portal-FE/client/bower_components/jquery.newstape/gulpfile.js b/ecomp-portal-FE/client/bower_components/jquery.newstape/gulpfile.js
deleted file mode 100644
index 68104cd0..00000000
--- a/ecomp-portal-FE/client/bower_components/jquery.newstape/gulpfile.js
+++ /dev/null
@@ -1,22 +0,0 @@
-var gulp = require('gulp'),
- uglify = require('gulp-uglify'),
- rename = require('gulp-rename'),
- clean = require('gulp-clean');
-
-gulp.task('minjs', function() {
- return gulp.src(['jquery.newstape.js'])
- .pipe(uglify())
- .pipe(rename({
- suffix: ".min"
- }))
- .pipe(gulp.dest('dist'));
-});
-
-gulp.task('clean', function() {
- return gulp.src(['dist/**/.*'], {read: false})
- .pipe(clean());
-});
-
-gulp.task('default', ['clean', 'minjs'], function() {
-
-}); \ No newline at end of file