Weird behavior, when i try in grunt-contrib-sass make key variable, instead path.
var sourseScssFolder = 'src/scss/*.scss';
var destCssFile = 'src/packed.css';
sass: {
            dist: {
                options: {
                    style: 'nested'
                },
                files: {
                    // Key don't wanna load from variable
                    destCssFile: sourseScssFolder,
                }
            }
        },
After this compiler create file "dest File", instead read from var. How fix this?
 
     
    