citra-emu
/
citra-web
Archived
1
0
Fork 0

Temporarily removing gulp task removing unused CSS.

This commit is contained in:
chris062689 2017-06-04 12:07:08 -04:00
parent 979f0c8e1c
commit e499eb4dc2
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ gulp.task('hugo', ['setup'], function (cb) {
gulp.task("css", ['hugo'], () => (
gulp.src(`${distPath}/css/**/*.css`, {base: './'})
.pipe(postcss([cssnext(), cssImport({from: `${distPath}/css/main.css`})]))
.pipe(uncss({
/*.pipe(uncss({
html: [`${distPath}/**/*.html`],
ignore: [/\w\.in/,
".fade",
@ -55,7 +55,7 @@ gulp.task("css", ['hugo'], () => (
/(#|\.)navbar(\-[a-zA-Z]+)?/,
/(#|\.)dropdown(\-[a-zA-Z]+)?/,
/(#|\.)carousel(\-[a-zA-Z]+)?/,
]}))
]}))*/
.pipe(cleanCSS())
.pipe(md5(10, `${distPath}/**/*.html`))
.pipe(gulp.dest('./'))