aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorOliver Davies <oliver@oliverdavies.uk>2016-10-16 09:53:19 +0100
committerGitHub <noreply@github.com>2016-10-16 09:53:19 +0100
commitb78cca5831e71e1165d70243e805af19e0d4df60 (patch)
tree4e18af57b26407ab67061fea960bf39aa7638be2 /Gruntfile.js
parent3c36ee6cff43d2c4aefe59ef5198df4f327fa094 (diff)
downloadfreenode-live-2017-presentation-b78cca5831e71e1165d70243e805af19e0d4df60.tar
freenode-live-2017-presentation-b78cca5831e71e1165d70243e805af19e0d4df60.tar.gz
Support sass extension for custom themes
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 87630d5..3bcefce 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -42,7 +42,7 @@ module.exports = function(grunt) {
{
expand: true,
cwd: 'css/theme/source',
- src: ['*.scss'],
+ src: ['*.sass', '*.scss'],
dest: 'css/theme',
ext: '.css'
}
@@ -118,7 +118,12 @@ module.exports = function(grunt) {
tasks: 'js'
},
theme: {
- files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],
+ files: [
+ 'css/theme/source/*.sass',
+ 'css/theme/source/*.scss',
+ 'css/theme/template/*.sass',
+ 'css/theme/template/*.scss'
+ ],
tasks: 'css-themes'
},
css: {