summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 843df14..81304dc 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -58,6 +58,14 @@ gulp.task('minifyCSS', function(cb) {
.on('error', swallowError)
.pipe(gulp.dest('dist/'));
+ gulp
+ .src(['css/reader_iframe.css'])
+ .pipe(less())
+ .pipe(minifyCSS())
+ .pipe(rename("reader_iframe.min.css"))
+ .on('error', swallowError)
+ .pipe(gulp.dest('dist/'));
+
cb();
});