-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.js
43 lines (36 loc) · 1.22 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
'use strict'
var imagemin = require('broccoli-imagemin')
module.exports = {
name: require('./package').name,
included: function() {
this._super.included.apply(this, arguments)
this.app.options.imagemin = this.app.options.imagemin || {}
if (typeof this.app.options.imagemin === 'boolean') {
this.enabled = this.app.options.imagemin
this.app.options.imagemin = {}
} else if ('enabled' in this.app.options.imagemin) {
this.enabled = this.app.options.imagemin.enabled
delete this.app.options.imagemin.enabled
} else {
this.enabled = this.app.env === 'production'
}
// if addon is enabled but no plugins have been specified, use a default set
if (
this.enabled &&
(!this.app.options.imagemin.plugins || this.app.options.imagemin.plugins.length === 0)
) {
this.app.options.imagemin.plugins = [
require('imagemin-gifsicle')({ interlaced: true }),
require('imagemin-jpegtran')({ progressive: true }),
require('imagemin-optipng')(),
require('imagemin-svgo')(),
]
}
},
postprocessTree: function(type, tree) {
if (this.enabled) {
tree = new imagemin(tree, this.app.options.imagemin)
}
return tree
},
}