Skip to content

Commit

Permalink
feat: support more file extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
weyusi committed Apr 22, 2019
1 parent 1ea89ec commit 49c9fcb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ function logicGzip () {
let route = hexo.route
let routeList = route.list()

return Promise.all(routeList.filter(path => (path.endsWith('.html') || path.endsWith('.js') || path.endsWith('.css') || path.endsWith('.xml') || path.endsWith('.json'))).map(path => {
return Promise.all(routeList.filter(path => (path.endsWith('.html') || path.endsWith('.js') || path.endsWith('.css')
|| path.endsWith('.xml') || path.endsWith('.json') || path.endsWith('.txt')
|| path.endsWith('.ttf') || path.endsWith('.atom') || path.endsWith('.stl')
|| path.endsWith('.svg') || path.endsWith('.eot'))).map(path => {
return new Promise((resolve, reject) => {
// Grab all assets using hexo router
let assetPath = route.get(path)
Expand Down Expand Up @@ -142,7 +145,10 @@ function logicBrotli () {
let route = hexo.route
let routeList = route.list()

return Promise.all(routeList.filter(path => (path.endsWith('.html') || path.endsWith('.js') || path.endsWith('.css') || path.endsWith('.xml') || path.endsWith('.json'))).map(path => {
return Promise.all(routeList.filter(path => (path.endsWith('.html') || path.endsWith('.js') || path.endsWith('.css')
|| path.endsWith('.xml') || path.endsWith('.json') || path.endsWith('.txt')
|| path.endsWith('.ttf') || path.endsWith('.atom') || path.endsWith('.stl')
|| path.endsWith('.svg') || path.endsWith('.eot'))).map(path => {
return new Promise((resolve, reject) => {
// Grab all assets using hexo router
let assetPath = route.get(path)
Expand Down

0 comments on commit 49c9fcb

Please sign in to comment.