summaryrefslogtreecommitdiff
path: root/gulpfile.js
diff options
context:
space:
mode:
authordennisschagt <dennisschagt@gmail.com>2015-05-07 02:25:20 +0200
committerdennisschagt <dennisschagt@gmail.com>2015-05-07 02:25:20 +0200
commitb28d5af448febba2818371c1ba7d0d056f1eb11d (patch)
treec94b4ff4af877bcc1ece1506a56193843b605fa1 /gulpfile.js
parentc4152b00d6005e33c4250493e7ebe762737c16f2 (diff)
downloadn-b28d5af448febba2818371c1ba7d0d056f1eb11d.tar.gz
Restart express server with right syntax in gulp
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/gulpfile.js b/gulpfile.js
index dea9e2b..f7a1d54 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -11,7 +11,7 @@ gulp.task('server', function() {
var livereload = false;
server.run([pkg.main], options, livereload);
- gulp.watch([pkg.main], [server.run]);
+ gulp.watch([pkg.main], ['server']);
});
/** Creates a directory tree if it does not yet exist. */