diff options
author | Hakim El Hattab | 2017-01-31 15:49:51 +0100 |
---|---|---|
committer | GitHub | 2017-01-31 15:49:51 +0100 |
commit | 981a8b98e4572b65d8a908e42c45add8215df018 (patch) | |
tree | be1a17a062b6733b8532e82b3a11d7fe2557608d /Gruntfile.js | |
parent | 581da02defa8a65db36231e13fdd3f018745c9d4 (diff) | |
parent | b78cca5831e71e1165d70243e805af19e0d4df60 (diff) |
Merge pull request #1728 from opdavies/sass-extension
support .sass themes
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 059bb05..aa04b68 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -44,7 +44,7 @@ module.exports = function(grunt) { { expand: true, cwd: 'css/theme/source', - src: ['*.scss'], + src: ['*.sass', '*.scss'], dest: 'css/theme', ext: '.css' } @@ -122,7 +122,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: { |