From 97aaccae54d0330b2e7e5ea160e0d839560ac626 Mon Sep 17 00:00:00 2001 From: Mike Francis Date: Tue, 9 Dec 2014 16:37:50 +0000 Subject: [PATCH] Swap grunt-contrib-sass for grunt-sass --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 0a4fe6b..704e3c6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -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');