From 5e8162e83c05c9629d3a897c01feee6665994a14 Mon Sep 17 00:00:00 2001 From: "D. Stuart Freeman" Date: Tue, 31 Jan 2017 12:20:11 -0500 Subject: [PATCH] Use node-sass so we don't have to do a separate install of ruby and sass --- Gruntfile.js | 5 ++++- package.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 1cac705..e469189 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -2,6 +2,9 @@ module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), sass: { + options: { + sourceMap: true + }, dev: { files: [{ expand: true, @@ -54,7 +57,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-contrib-copy'); grunt.loadNpmTasks('grunt-contrib-clean'); - grunt.loadNpmTasks('grunt-contrib-sass'); + grunt.loadNpmTasks('grunt-sass'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-bower-task'); grunt.loadNpmTasks('grunt-npm-install'); diff --git a/package.json b/package.json index 25cf7cf..60cb2a3 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,10 @@ "grunt-contrib-copy": "^0.6.0", "grunt-contrib-jshint": "~0.10.0", "grunt-contrib-nodeunit": "~0.4.1", - "grunt-contrib-sass": "^0.8.1", "grunt-contrib-uglify": "~0.5.0", "grunt-contrib-watch": "^0.6.1", "grunt-npm-install": "^0.1.0", + "grunt-sass": "^2.0.0", "gulp": "^3.8.10", "gulp-autoprefixer": "^2.1.0", "gulp-batch": "^1.0.5",