feat: enable plugin by default and update options naming

This commit is contained in:
curbengh 2019-09-11 02:15:19 +01:00
parent 2930f1da1d
commit 7e85bd6338
No known key found for this signature in database
GPG Key ID: 21EA847C35D6E034
2 changed files with 62 additions and 64 deletions

114
index.js
View File

@ -1,70 +1,68 @@
/* global hexo */
'use strict'
if (hexo.config.neat_enable === true) {
// HTML minifier
hexo.config.neat_html = Object.assign({
enable: true,
logger: false,
exclude: [],
collapseBooleanAttributes: true,
collapseWhitespace: true,
// Ignore '<!-- more -->' https://hexo.io/docs/tag-plugins#Post-Excerpt
ignoreCustomComments: [/^\s*more/],
removeComments: true,
removeEmptyAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
minifyJS: true,
minifyCSS: true,
globOptions: { basename: true }
}, hexo.config.neat_html)
hexo.config.minify = Object.assign({
enable: true
}, hexo.config.minify)
// CSS minifier
hexo.config.neat_css = Object.assign({
enable: true,
logger: false,
exclude: ['*.min.css'],
level: 2,
globOptions: { basename: true }
}, hexo.config.neat_css)
hexo.config.minify.html = Object.assign({
enable: true,
logger: false,
exclude: [],
collapseBooleanAttributes: true,
collapseWhitespace: true,
// Ignore '<!-- more -->' https://hexo.io/docs/tag-plugins#Post-Excerpt
ignoreCustomComments: [/^\s*more/],
removeComments: true,
removeEmptyAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
minifyJS: true,
minifyCSS: true,
globOptions: { basename: true }
}, hexo.config.minify.html)
// Javascript minifier
hexo.config.neat_js = Object.assign({
enable: true,
logger: false,
exclude: ['*.min.js'],
compress: {},
mangle: true,
output: {},
globOptions: { basename: true }
}, hexo.config.neat_js)
hexo.config.minify.css = Object.assign({
enable: true,
logger: false,
exclude: ['*.min.css'],
level: 2,
globOptions: { basename: true }
}, hexo.config.minify.css)
// SVG minifier
hexo.config.neat_svg = Object.assign({
enable: true,
logger: false,
include: ['*.svg', '!*.min.svg'],
plugins: [],
globOptions: { basename: true }
}, hexo.config.neat_svg)
hexo.config.minify.js = Object.assign({
enable: true,
logger: false,
exclude: ['*.min.js'],
compress: {},
mangle: true,
output: {},
globOptions: { basename: true }
}, hexo.config.minify.js)
// gzip compression
hexo.config.neat_gzip = Object.assign({
enable: true,
logger: false,
include: ['*.html', '*.css', '*.js', '*.txt', '*.ttf', '*.atom', '*.stl', '*.xml', '*.svg', '*.eot', '*.json'],
globOptions: { basename: true }
}, hexo.config.neat_gzip)
hexo.config.minify.svg = Object.assign({
enable: true,
logger: false,
include: ['*.svg', '!*.min.svg'],
plugins: [],
globOptions: { basename: true }
}, hexo.config.minify.svg)
// brotli compression
hexo.config.neat_brotli = Object.assign({
enable: true,
logger: false,
include: ['*.html', '*.css', '*.js', '*.txt', '*.ttf', '*.atom', '*.stl', '*.xml', '*.svg', '*.eot', '*.json'],
globOptions: { basename: true }
}, hexo.config.neat_brotli)
hexo.config.minify.gzip = Object.assign({
enable: true,
logger: false,
include: ['*.html', '*.css', '*.js', '*.txt', '*.ttf', '*.atom', '*.stl', '*.xml', '*.svg', '*.eot', '*.json'],
globOptions: { basename: true }
}, hexo.config.minify.gzip)
hexo.config.minify.brotli = Object.assign({
enable: true,
logger: false,
include: ['*.html', '*.css', '*.js', '*.txt', '*.ttf', '*.atom', '*.stl', '*.xml', '*.svg', '*.eot', '*.json'],
globOptions: { basename: true }
}, hexo.config.minify.brotli)
if (hexo.config.minify.enable === true) {
const filter = require('./lib/filter')
hexo.extend.filter.register('after_render:html', filter.logicHtml)
hexo.extend.filter.register('after_render:css', filter.logicCss)

View File

@ -18,7 +18,7 @@ function isMatch (path, patterns, options) {
function logicHtml (str, data) {
const hexo = this
const options = hexo.config.neat_html
const options = hexo.config.minify.html
// Return if disabled.
if (options.enable === false) return
@ -44,7 +44,7 @@ function logicHtml (str, data) {
function logicCss (str, data) {
const hexo = this
const options = hexo.config.neat_css
const options = hexo.config.minify.css
if (options.enable === false) return
const path = data.path
@ -72,7 +72,7 @@ function logicCss (str, data) {
function logicJs (str, data) {
const hexo = this
const options = hexo.config.neat_js
const options = hexo.config.minify.js
if (options.enable === false) return
const path = data.path
@ -103,7 +103,7 @@ function logicJs (str, data) {
function logicSvg () {
const hexo = this
const options = hexo.config.neat_svg
const options = hexo.config.minify.svg
// Return if disabled.
if (options.enable === false) return
@ -145,7 +145,7 @@ function logicSvg () {
function logicGzip () {
const hexo = this
const options = hexo.config.neat_gzip
const options = hexo.config.minify.gzip
// Return if disabled.
if (options.enable === false) return
@ -191,7 +191,7 @@ function logicGzip () {
function logicBrotli () {
const hexo = this
const options = hexo.config.neat_brotli
const options = hexo.config.minify.brotli
// Return if disabled.
if (options.enable === false) return