Skip to content

Commit

Permalink
Fix compile sass files with .sass extension
Browse files Browse the repository at this point in the history
  • Loading branch information
artofhuman committed Apr 29, 2014
1 parent 867dce7 commit 6a428a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ module.exports = function (grunt) {
files: [{
expand: true,
cwd: '<%%= config.app %>/styles',
src: ['*.scss'],
src: ['*.{scss,sass}'],
dest: '.tmp/styles',
ext: '.css'
}]
Expand All @@ -212,7 +212,7 @@ module.exports = function (grunt) {
files: [{
expand: true,
cwd: '<%%= config.app %>/styles',
src: ['*.scss'],
src: ['*.{scss,sass}'],
dest: '.tmp/styles',
ext: '.css'
}]
Expand Down

0 comments on commit 6a428a7

Please sign in to comment.