Skip to content

Commit

Permalink
Merge pull request #110 from petetnt/patch-1
Browse files Browse the repository at this point in the history
Fixed TypeError in the Gulp example
  • Loading branch information
milankinen committed Apr 18, 2016
2 parents f9decc0 + 3fd810c commit ef592b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/03-build-systems/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ gulp.task("watch:js", function() {

gulp.task("watch:server", function() {
nodemon({ script: "server.js", ext: "js", ignore: ["gulpfile.js", "bundle.js", "node_modules/*"] })
.on("change", [])
.on("change", function () {})
.on("restart", function () {
console.log("Server restarted")
})
Expand Down

0 comments on commit ef592b4

Please sign in to comment.