grunt-sass-scss
Version:
Compiles Sass / Scss to Css
18 lines (15 loc) • 355 B
JavaScript
/*
* grunt-sass-scss
*
* Copyright (c) 2021 semiromid
* Licensed under the MIT license.
*/
;
module.exports = function(grunt, options, file, result){
if(options.sourceMap && result.map){
grunt.file.write(
(options.sourceMap === true) ? file.dest + '.map' : options.sourceMap,
result.map
);
}
}