My Grunt setup uses sass to compile my .scss files into src / .css and cssmin to combine and minimize my src / .css files in main.css.
I want to use the new sourcemap function in SASS, but I'm not sure if this will really do anything for me, given that cssmin will put all my css files in main.css.
Can anyone figure this out?
I, too, while trying to disable sourcemap in grunt-contrib-sass, and that won't take. Here is the corresponding code in my Gruntfile.js file:
sass: { dist: { options: { sourcemap: 'none' }, files: [{ expand: true, cwd: 'stylesheets/scss', src: ['**/*.scss'], dest: 'stylesheets/src', ext: '.css' }] } },
from: github.com/gruntjs/grunt-contrib-sass
source share