parent
e64eb37a2b
commit
b72e9e5536
62 changed files with 1684 additions and 5 deletions
12
gulpfile.js
12
gulpfile.js
|
@ -18,4 +18,14 @@ gulp.task('cp', function () {
|
|||
.pipe(gulp.dest('./static/font-awesome'));
|
||||
});
|
||||
|
||||
gulp.task('default', ['less', 'cp']);
|
||||
gulp.task('pygments', function () {
|
||||
return gulp.src(['./static/pygments/*.css', '!./static/pygments/*min.css'])
|
||||
.pipe(minify())
|
||||
.pipe(rename({
|
||||
extname: '.min.css'
|
||||
}))
|
||||
.pipe(gulp.dest('./static/pygments'));
|
||||
});
|
||||
|
||||
|
||||
gulp.task('default', ['less', 'cp', 'pygments']);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue