hexo-yam/index.js

56 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-05-26 11:09:41 +00:00
/* global hexo */
var assign = require('object-assign')
2016-05-26 11:09:41 +00:00
if (hexo.config.neat_enable === true) {
// HTML minifier
hexo.config.neat_html = assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false,
exclude: [],
ignoreCustomComments: [/^\s*more/],
removeComments: true,
removeCommentsFromCDATA: true,
collapseWhitespace: true,
collapseBooleanAttributes: true,
removeEmptyAttributes: true,
minifyJS: true,
minifyCSS: true
}, hexo.config.neat_html)
2016-05-26 11:09:41 +00:00
// Css minifier
hexo.config.neat_css = assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false,
exclude: ['*.min.css']
}, hexo.config.neat_css)
2016-05-26 11:09:41 +00:00
// Js minifier
hexo.config.neat_js = assign({
enable: true,
mangle: true,
2018-10-25 09:45:26 +00:00
logger: false,
output: {},
compress: {},
exclude: ['*.min.js']
}, hexo.config.neat_js)
2016-05-26 11:09:41 +00:00
// html, css, js compression
hexo.config.neat_gzip = assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false
}, hexo.config.neat_gzip)
2016-05-26 11:09:41 +00:00
// html, css, js compression
hexo.config.neat_brotli = assign({
enable: true,
2018-10-25 09:45:26 +00:00
logger: false
}, hexo.config.neat_brotli)
2018-09-30 07:30:32 +00:00
var filter = require('./lib/filter')
hexo.extend.filter.register('after_render:html', filter.logicHtml)
hexo.extend.filter.register('after_render:css', filter.logicCss)
hexo.extend.filter.register('after_render:js', filter.logicJs)
hexo.extend.filter.register('after_generate', filter.logicGzip)
hexo.extend.filter.register('after_generate', filter.logicBrotli)
}