summaryrefslogtreecommitdiffhomepage
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorHakim El Hattab2019-02-28 10:07:41 +0100
committerHakim El Hattab2019-02-28 10:07:41 +0100
commit205ef8fdcc4eb35e50d4f523162e0b1b65fdc47f (patch)
tree8b35e5030dee26c8b567d103145f2b9b5186db00 /Gruntfile.js
parentd549204ef17a0d87a0bf658a44e18edaad942aee (diff)
fix scss compilation task
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 59ad896..b58eabe 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,3 +1,5 @@
+const sass = require('node-sass');
+
/* global module:false */
module.exports = function(grunt) {
var port = grunt.option('port') || 8000;
@@ -35,6 +37,9 @@ module.exports = function(grunt) {
},
sass: {
+ options: {
+ implementation: sass,
+ },
core: {
src: 'css/reveal.scss',
dest: 'css/reveal.css'