Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYan Zhu <picturepan2@hotmail.com>2017-02-25 13:04:15 +0300
committerYan Zhu <picturepan2@hotmail.com>2017-02-25 13:04:15 +0300
commit8c4b464258b2958ba1b7954f045d308c3a7b850b (patch)
tree5b7a8d64b212a4bdb526cba17b0e8e251209f37d /gulpfile.js
parentaa34c9f03af7e200336c399a7e4f54357a86c106 (diff)
CHG: Code cleanups
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 798ced7..d8edf05 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -33,6 +33,11 @@ gulp.task('docs', function() {
}))
.pipe(csscomb())
.pipe(gulp.dest('./docs/css'))
+ .pipe(cleancss())
+ .pipe(rename({
+ suffix: '.min'
+ }))
+ .pipe(gulp.dest('./docs/css'))
});
gulp.task('default', ['build']);