Replace ruby sass with sassc for faster (much faster\!) compiling

pull/945/head
Abdullah Almsaeed 2015-11-05 10:47:24 -05:00
parent 17dce579b0
commit f0977ab235
2 changed files with 3 additions and 3 deletions

View File

@ -131,7 +131,7 @@ module.exports = function (grunt) {
// LESS Compiler // LESS Compiler
grunt.loadNpmTasks('grunt-contrib-less'); grunt.loadNpmTasks('grunt-contrib-less');
// SASS compiler // SASS compiler
grunt.loadNpmTasks('grunt-contrib-sass'); grunt.loadNpmTasks('grunt-sass');
// Watch File Changes // Watch File Changes
grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-watch');
// Compress JS Files // Compress JS Files

View File

@ -17,11 +17,11 @@
"grunt-contrib-cssmin": "^0.12.2", "grunt-contrib-cssmin": "^0.12.2",
"grunt-contrib-jshint": "^0.11.2", "grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-less": "^0.12.0", "grunt-contrib-less": "^0.12.0",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-uglify": "^0.7.0", "grunt-contrib-uglify": "^0.7.0",
"grunt-contrib-watch": "~0.6.1", "grunt-contrib-watch": "~0.6.1",
"grunt-cssjanus": "^0.2.4", "grunt-cssjanus": "^0.2.4",
"grunt-image": "^1.0.5", "grunt-image": "^1.0.5",
"grunt-includes": "^0.4.5" "grunt-includes": "^0.4.5",
"grunt-sass": "^1.1.0"
} }
} }