Swap grunt-contrib-sass for grunt-sass

This commit is contained in:
Mike Francis 2014-12-09 16:37:50 +00:00
parent 68ae47fbe2
commit 97aaccae54
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ module.exports = function(grunt) {
options: {
mangle: false
},
my_target: {
all: {
files: {
'js/script.min.js': scripts
}
@ -83,7 +83,7 @@ module.exports = function(grunt) {
});
grunt.loadNpmTasks('grunt-autoprefixer');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-imageoptim');