@@ -63,7 +63,7 @@ function gulpCssBase64(opts) {
63
63
}
64
64
65
65
if ( opts . extensionsAllowed . length !== 0 && opts . extensionsAllowed . indexOf ( path . extname ( result [ 1 ] ) ) == - 1 ) {
66
- log ( "Ignore " + chalk . yellow ( result [ 1 ] ) + ", extension not allowed " + chalk . yellow ( path . extname ( result [ 1 ] ) ) , opts . verbose ) ;
66
+ log ( "Ignores " + chalk . yellow ( result [ 1 ] ) + ", extension not allowed " + chalk . yellow ( path . extname ( result [ 1 ] ) ) , opts . verbose ) ;
67
67
callback ( ) ;
68
68
return ;
69
69
}
@@ -72,7 +72,7 @@ function gulpCssBase64(opts) {
72
72
if ( undefined !== fileRes ) {
73
73
74
74
if ( fileRes . contents . length > opts . maxWeightResource ) {
75
- log ( "Ignore " + chalk . yellow ( result [ 1 ] ) + ", file is too big " + chalk . yellow ( fileRes . contents . length + " bytes" ) , opts . verbose ) ;
75
+ log ( "Ignores " + chalk . yellow ( result [ 1 ] ) + ", file is too big " + chalk . yellow ( fileRes . contents . length + " bytes" ) , opts . verbose ) ;
76
76
callback ( ) ;
77
77
return ;
78
78
}
@@ -113,13 +113,13 @@ function encodeResource(img, file, opts, doneCallback) {
113
113
var fileRes = new gutil . File ( ) ;
114
114
115
115
if ( / ^ d a t a : / . test ( img ) ) {
116
- log ( "Ignore " + chalk . yellow ( img . substring ( 0 , 30 ) + '...' ) + ", already encoded" , opts . verbose ) ;
116
+ log ( "Ignores " + chalk . yellow ( img . substring ( 0 , 30 ) + '...' ) + ", already encoded" , opts . verbose ) ;
117
117
doneCallback ( ) ;
118
118
return ;
119
119
}
120
120
121
121
if ( img [ 0 ] === '#' ) {
122
- log ( "Ignore " + chalk . yellow ( img . substring ( 0 , 30 ) + '...' ) + ", SVG mask" , opts . verbose ) ;
122
+ log ( "Ignores " + chalk . yellow ( img . substring ( 0 , 30 ) + '...' ) + ", SVG mask" , opts . verbose ) ;
123
123
doneCallback ( ) ;
124
124
return ;
125
125
}
0 commit comments