summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2020-10-08 16:30:03 +0300
committerAndrew Dolgov <[email protected]>2020-10-08 16:30:03 +0300
commit8d57b9a5df1ea82e037aa31dd843f999df155b05 (patch)
treeca3786ebbb41ea5d6f9ada5c38d0192f9df5e929 /gulpfile.js
parent37fadab4eb67d20fe0689eeff914cbeecb20e5d4 (diff)
even more gulp-related stuff
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();
});