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

Commit

Permalink
fixed live reload port editing in basic
Browse files Browse the repository at this point in the history
  • Loading branch information
petecoop committed Jul 23, 2013
1 parent c806ebc commit 2f6b612
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions templates/basic/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ module.exports = function (grunt) {
}
},
watch: {
options: { nospawn: true },
options: {
nospawn: true,
livereload: reloadPort
},
server: {
files: [
'app.js',
Expand All @@ -23,15 +26,15 @@ module.exports = function (grunt) {
},
js: {
files: ['public/javascripts/*.js'],
options: { livereload: true},
options: { livereload: reloadPort},
},
css: {
files: ['public/stylesheets/*.css'],
options: { livereload: true},
options: { livereload: reloadPort},
},
jade: {
files: ['views/*.jade'],
options: { livereload: true},
options: { livereload: reloadPort},
}
}
});
Expand Down

0 comments on commit 2f6b612

Please sign in to comment.