From 8d57b9a5df1ea82e037aa31dd843f999df155b05 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 8 Oct 2020 16:30:03 +0300 Subject: even more gulp-related stuff --- gulpfile.js | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'gulpfile.js') 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(); }); -- cgit v1.2.3