@@ -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 , {
@@ -181,7 +181,7 @@ module.exports = (grunt) => {
181
181
if ( options . writeDest ) {
182
182
tally . sizeAfter += result . css . length
183
183
grunt . file . write ( dest , result . css )
184
- grunt . log . ok ( '>> File \x1b[36m%s\x1b[0m created. \x1b[36m%s\x1b[0m' , dest , maxmin ( input . length , result . css . length ) )
184
+ grunt . log . ok ( 'File \x1b[36m%s\x1b[0m created. \x1b[36m%s\x1b[0m' , dest , maxmin ( input . length , result . css . length ) )
185
185
}
186
186
187
187
tally . sheets += 1
@@ -194,7 +194,7 @@ module.exports = (grunt) => {
194
194
}
195
195
196
196
grunt . file . write ( mapDest , result . map . toString ( ) )
197
- grunt . log . ok ( '>> File \x1b[36m%s\x1b[0m created (source map).' , `${ dest } .map` )
197
+ grunt . log . ok ( 'File \x1b[36m%s\x1b[0m created (source map).' , `${ dest } .map` )
198
198
199
199
tally . maps += 1
200
200
}
@@ -203,7 +203,7 @@ module.exports = (grunt) => {
203
203
const diffPath = typeof options . diff === 'string' ? options . diff : `${ dest } .diff`
204
204
205
205
grunt . file . write ( diffPath , diff . createPatch ( dest , input , result . css ) )
206
- grunt . log . ok ( '>> File \x1b[36m%s\x1b[0m created (diff).' , diffPath )
206
+ grunt . log . ok ( 'File \x1b[36m%s\x1b[0m created (diff).' , diffPath )
207
207
208
208
tally . diffs += 1
209
209
}
@@ -222,11 +222,11 @@ module.exports = (grunt) => {
222
222
}
223
223
224
224
if ( tally . maps ) {
225
- grunt . log . ok ( `>> ${ tally . maps } ${ grunt . util . pluralize ( tally . maps , 'sourcemap/sourcemaps' ) } created.` )
225
+ grunt . log . ok ( `${ tally . maps } ${ grunt . util . pluralize ( tally . maps , 'sourcemap/sourcemaps' ) } created.` )
226
226
}
227
227
228
228
if ( tally . diffs ) {
229
- grunt . log . ok ( `>> ${ tally . diffs } ${ grunt . util . pluralize ( tally . diffs , 'diff/diffs' ) } created.` )
229
+ grunt . log . ok ( `${ tally . diffs } ${ grunt . util . pluralize ( tally . diffs , 'diff/diffs' ) } created.` )
230
230
}
231
231
232
232
if ( tally . issues ) {
0 commit comments