From f76a0e58d6c67648b8fb577ba3f91ab3add858a1 Mon Sep 17 00:00:00 2001 From: Tim Lancina Date: Thu, 10 Dec 2015 17:15:07 -0600 Subject: [PATCH] chore(gulp): use different livereload port The default conflicts with the default used by the CLI. --- gulpfile.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 17f5f03475..d5db155521 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -108,7 +108,9 @@ gulp.task('watch', function(done) { gulp.task('serve', function() { connect.server({ port: flags.port, - livereload: true + livereload: { + port: 35700 + } }); });