Skip to content

Commit

Permalink
fix start task
Browse files Browse the repository at this point in the history
  • Loading branch information
eshaibu committed Mar 29, 2017
1 parent df8fc65 commit 99f26ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const gulp = require('gulp');
// const browserSync = require('browser-sync').create();
const browserSync = require('browser-sync');
const nodemon = require('gulp-nodemon');
const sass = require('gulp-sass');
const bower = require('gulp-bower');
Expand All @@ -11,8 +11,8 @@ gulp.task('nodemon', () => {
nodemon({ script: 'server.js' });
});

gulp.task('serve', ['nodemon'], () => {
browserSync.init({
gulp.task('server', ['nodemon'], () => {
browserSync.create({
proxy: "http://localhost:3000",
port: 7000,
files: ["public/**/*.*"],
Expand Down

0 comments on commit 99f26ab

Please sign in to comment.