chore(gulp): use different livereload port

The default conflicts with the default used by the CLI.
This commit is contained in:
Tim Lancina
2015-12-10 17:15:07 -06:00
parent 050874bf36
commit f76a0e58d6

View File

@ -108,7 +108,9 @@ gulp.task('watch', function(done) {
gulp.task('serve', function() {
connect.server({
port: flags.port,
livereload: true
livereload: {
port: 35700
}
});
});