@@ -61,10 +61,10 @@ module.exports = (grunt) => {
61
61
const map = typeof options . map === 'boolean' ?
62
62
options . map : {
63
63
prev : getPrevMap ( from ) ,
64
- inline : ( typeof options . map . inline === 'boolean' ) ? options . map . inline : true ,
64
+ inline : typeof options . map . inline === 'boolean' ? options . map . inline : true ,
65
65
annotation : getAnnotation ( to ) ,
66
- sourcesContent : ( typeof options . map . sourcesContent === 'boolean' ) ? options . map . sourcesContent : true ,
67
- absolute : ( typeof options . map . absolute === 'boolean' ) ? options . map . absolute : false ,
66
+ sourcesContent : typeof options . map . sourcesContent === 'boolean' ? options . map . sourcesContent : true ,
67
+ absolute : typeof options . map . absolute === 'boolean' ? options . map . absolute : false ,
68
68
}
69
69
70
70
return processor . process ( input , {
@@ -180,7 +180,7 @@ module.exports = (grunt) => {
180
180
if ( options . writeDest ) {
181
181
tally . sizeAfter += result . css . length
182
182
grunt . file . write ( dest , result . css )
183
- grunt . log . ok ( '>> File \x1b[36m%s\x1b[0m created. \x1b[36m%s\x1b[0m' , dest , maxmin ( input . length , result . css . length ) )
183
+ grunt . log . ok ( 'File \x1b[36m%s\x1b[0m created. \x1b[36m%s\x1b[0m' , dest , maxmin ( input . length , result . css . length ) )
184
184
}
185
185
186
186
tally . sheets += 1
@@ -193,7 +193,7 @@ module.exports = (grunt) => {
193
193
}
194
194
195
195
grunt . file . write ( mapDest , result . map . toString ( ) )
196
- grunt . log . ok ( '>> File \x1b[36m%s\x1b[0m created (source map).' , `${ dest } .map` )
196
+ grunt . log . ok ( 'File \x1b[36m%s\x1b[0m created (source map).' , `${ dest } .map` )
197
197
198
198
tally . maps += 1
199
199
}
@@ -202,7 +202,7 @@ module.exports = (grunt) => {
202
202
const diffPath = typeof options . diff === 'string' ? options . diff : `${ dest } .diff`
203
203
204
204
grunt . file . write ( diffPath , diff . createPatch ( dest , input , result . css ) )
205
- grunt . log . ok ( '>> File \x1b[36m%s\x1b[0m created (diff).' , diffPath )
205
+ grunt . log . ok ( 'File \x1b[36m%s\x1b[0m created (diff).' , diffPath )
206
206
207
207
tally . diffs += 1
208
208
}
@@ -221,11 +221,11 @@ module.exports = (grunt) => {
221
221
}
222
222
223
223
if ( tally . maps ) {
224
- grunt . log . ok ( `>> ${ tally . maps } ${ grunt . util . pluralize ( tally . maps , 'sourcemap/sourcemaps' ) } created.` )
224
+ grunt . log . ok ( `${ tally . maps } ${ grunt . util . pluralize ( tally . maps , 'sourcemap/sourcemaps' ) } created.` )
225
225
}
226
226
227
227
if ( tally . diffs ) {
228
- grunt . log . ok ( `>> ${ tally . diffs } ${ grunt . util . pluralize ( tally . diffs , 'diff/diffs' ) } created.` )
228
+ grunt . log . ok ( `${ tally . diffs } ${ grunt . util . pluralize ( tally . diffs , 'diff/diffs' ) } created.` )
229
229
}
230
230
231
231
if ( tally . issues ) {
0 commit comments