Set maximum brotli compression level

This commit is contained in:
weyusi 2018-10-01 17:50:47 +09:30
parent 1c8c24029f
commit 03668833cf
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ function logic_brotli() {
currentFile.endsWith(".txt")) { currentFile.endsWith(".txt")) {
var inp = fs.createReadStream(currentFile); var inp = fs.createReadStream(currentFile);
var out = fs.createWriteStream(currentFile+'.br'); var out = fs.createWriteStream(currentFile+'.br');
var brotli = br.compressStream; var brotli = br.compressStream('quality=16');
inp.pipe(brotli()).pipe(out); inp.pipe(brotli()).pipe(out);
if (options.logger) { if (options.logger) {

View File

@ -1,7 +1,7 @@
{ {
"name": "hexo-yam", "name": "hexo-yam",
"description": "Yet Another Minifier. Minify and compress html, js and css", "description": "Yet Another Minifier. Minify and compress html, js and css",
"version": "0.5.0", "version": "0.5.1",
"readme": "README.md", "readme": "README.md",
"main": "index.js", "main": "index.js",
"directories": { "directories": {