Skip to content

Commit

Permalink
fixing gulp connect command
Browse files Browse the repository at this point in the history
  • Loading branch information
Gutek committed Oct 6, 2014
1 parent 1e164ba commit 6a197cf
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions gulpfile.js
Expand Up @@ -275,20 +275,22 @@ gulp.task('watch-lint', function () {
**/
gulp.task('connect', connect.server({
root: ['src'],
port: 8888,
port: 8000,
livereload: true,
open: {
browser: 'chrome'
}
}));

gulp.task('connect-dist', connect.server({
root: ['es-dist'],
port: 8888,
livereload: true,
open: {
browser: 'chrome'
}
}));
})
);

// gulp.task('connectDist', connect.server({
// root: 'es-dist',
// port: 8001,
// livereload: true,
// open: {
// browser: 'chrome'
// }
// })
// );

gulp.task('default', ['dev']);

0 comments on commit 6a197cf

Please sign in to comment.