Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
- [grunt] since we cant decide what build was done last time, lets ru…
Browse files Browse the repository at this point in the history
…n processhtml only for builds
  • Loading branch information
mrhyde committed Sep 5, 2014
1 parent ab17885 commit 847823f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tasks/grunt-contrib-watch.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@ module.exports = ->
@config 'watch',
scss:
files: ['<%= path.source.styles %>/{,**/}*.scss']
tasks: ['sass', 'autoprefixer']
tasks: [
'sass'
'autoprefixer'
]
sprite:
files: ['<%= path.source.sprites %>/{,**/}*.png']
tasks: ['sprite']
nunjucks:
files: ['<%= path.source.layouts %>/{,**/}*.nj']
tasks: ['nunjucks', 'processhtml']
tasks: ['nunjucks']

0 comments on commit 847823f

Please sign in to comment.