From f0977ab235e545a15180ee169710dd13b30c9f86 Mon Sep 17 00:00:00 2001 From: Abdullah Almsaeed Date: Thu, 5 Nov 2015 10:47:24 -0500 Subject: [PATCH] Replace ruby sass with sassc for faster (much faster\!) compiling --- Gruntfile.js | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1451c45df..fd3c35c85 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -131,7 +131,7 @@ module.exports = function (grunt) { // LESS Compiler grunt.loadNpmTasks('grunt-contrib-less'); // SASS compiler - grunt.loadNpmTasks('grunt-contrib-sass'); + grunt.loadNpmTasks('grunt-sass'); // Watch File Changes grunt.loadNpmTasks('grunt-contrib-watch'); // Compress JS Files diff --git a/package.json b/package.json index 8562666fc..d20d91818 100644 --- a/package.json +++ b/package.json @@ -17,11 +17,11 @@ "grunt-contrib-cssmin": "^0.12.2", "grunt-contrib-jshint": "^0.11.2", "grunt-contrib-less": "^0.12.0", - "grunt-contrib-sass": "^0.9.2", "grunt-contrib-uglify": "^0.7.0", "grunt-contrib-watch": "~0.6.1", "grunt-cssjanus": "^0.2.4", "grunt-image": "^1.0.5", - "grunt-includes": "^0.4.5" + "grunt-includes": "^0.4.5", + "grunt-sass": "^1.1.0" } }