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-24 13:50:58 +0300
committerYan Zhu <picturepan2@hotmail.com>2017-02-24 13:50:58 +0300
commit7cb9a15ba2c586be9aaf69b18dd472e4592cd5be (patch)
tree84e9f353c9a66ea9cb8e43363ece37fa315816e8 /gulpfile.js
parent1f9f807534108fe3412e1c2e7bf9d21e19e78f0d (diff)
CHG: Fix GItHub site CSS
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/gulpfile.js b/gulpfile.js
index a084646..798ced7 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -27,18 +27,12 @@ gulp.task('build', function() {
});
gulp.task('docs', function() {
- gulp.src('docs/**/*.less')
+ gulp.src(['./docs/css/*.less', './*.less'])
.pipe(less({
plugins: [autoprefix]
}))
.pipe(csscomb())
- .pipe(cleancss())
- .pipe(rename({
- suffix: '.min'
- }))
- .pipe(gulp.dest(function(file) {
- return file.base;
- }))
+ .pipe(gulp.dest('./docs/css'))
});
gulp.task('default', ['build']);