Skip to content

Commit

Permalink
Merge pull request #1728 from opdavies/sass-extension
Browse files Browse the repository at this point in the history
support .sass themes
  • Loading branch information
hakimel authored Jan 31, 2017
2 parents 581da02 + b78cca5 commit 981a8b9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = function(grunt) {
{
expand: true,
cwd: 'css/theme/source',
src: ['*.scss'],
src: ['*.sass', '*.scss'],
dest: 'css/theme',
ext: '.css'
}
Expand Down Expand Up @@ -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: {
Expand Down

0 comments on commit 981a8b9

Please sign in to comment.