sindresorhus / grunt-sass

Compile Sass to CSS
MIT License
1.01k stars 209 forks source link

use expand file it cant out put .css file #215

Closed joebnb closed 9 years ago

joebnb commented 9 years ago
        sass:{
            options:{
                outputStyle:'compressed',//“nested”,“expanded”,“compact”,“compressed”
                sourceComments:'none',//'none', 'normal', 'map'
                precision:'5',
                //sourceComments:'true',
            },
            minsass:{
                expand:true,
                cwd:'<%= config.src %>/',
                src:['**/*.scss','**/*.sass'],
                dest:'<%= config.dest %>/'
            }
        },

i use this code to compile scss file,when it done,it will out put same name file eg:a.scss -> a.scss(but the content was css)

sindresorhus commented 9 years ago

Use StackOverflow for support questions.