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

Commit

Permalink
Watch compiled files when using Babel
Browse files Browse the repository at this point in the history
Fixes #560.
  • Loading branch information
silvenon committed Jun 28, 2015
1 parent 1e2394e commit 0fcff3d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/templates/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ module.exports = function (grunt) {
files: [
'<%%= config.app %>/{,*/}*.html',
'.tmp/styles/{,*/}*.css',
'<%%= config.app %>/images/{,*/}*',
'<%%= config.app %>/scripts/{,*/}*.js'
'<%%= config.app %>/images/{,*/}*',<% if (useBabel) { %>
'.tmp/scripts/{,*/}*.js'<% } else { %>
'<%%= config.app %>/scripts/{,*/}*.js'<% } %>
],
port: 9000,
server: {
Expand Down

0 comments on commit 0fcff3d

Please sign in to comment.