Files: 4829da0340008840b7dfcb92b1c75d1e1f687112 / gulpfile.js
417 bytesRaw
1 | const gulp = require('gulp') |
2 | const usemin = require('gulp-usemin') |
3 | const htmlmin = require('gulp-htmlmin') |
4 | const cleanCss = require('gulp-clean-css') |
5 | const rev = require('gulp-rev') |
6 | |
7 | |
8 | gulp.task('usemin', () => |
9 | gulp.src('./src/index.html') |
10 | .pipe(usemin({ |
11 | css: [ rev() ], |
12 | html: [ htmlmin({ collapseWhitespace: true }) ], |
13 | inlinecss: [ cleanCss(), 'concat' ] |
14 | })) |
15 | .pipe(gulp.dest('dist/'))) |
Built with git-ssb-web