File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -18,14 +18,14 @@ module.exports = function(content) {
18
18
optipng : config . optipng || { } ,
19
19
svgo : config . svgo || { }
20
20
} ;
21
- // Remove in interlaced adn optimizationLevel checks in new major version
21
+ // Remove in interlaced and optimizationLevel checks in new major version
22
22
if ( config . hasOwnProperty ( 'interlaced' ) ) {
23
23
options . gifsicle . interlaced = config . interlaced ;
24
- this . emitWarning ( "DEPRECATED. Configure gifsicle's interlaced option in it's own options. (gifsicle.interlaced)" ) ;
24
+ this . emitWarning ( "DEPRECATED. Configure gifsicle's interlaced option in its own options. (gifsicle.interlaced)" ) ;
25
25
}
26
26
if ( config . hasOwnProperty ( 'optimizationLevel' ) ) {
27
27
options . optipng . optimizationLevel = config . optimizationLevel ;
28
- this . emitWarning ( "DEPRECATED. Configure optipng's optimizationLevel option in it's own options. (optipng.optimizationLevel)" ) ;
28
+ this . emitWarning ( "DEPRECATED. Configure optipng's optimizationLevel option in its own options. (optipng.optimizationLevel)" ) ;
29
29
}
30
30
31
31
var callback = this . async ( ) ,
@@ -60,4 +60,4 @@ module.exports = function(content) {
60
60
}
61
61
} ;
62
62
63
- module . exports . raw = true ;
63
+ module . exports . raw = true ;
You can’t perform that action at this time.
0 commit comments