Skip to content

Commit

Permalink
Align variables to the same style
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Makeev committed Jun 25, 2018
1 parent 8db267d commit 80ea46b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.js
Expand Up @@ -5,7 +5,7 @@ const rename = require('gulp-rename');
const replace = require('gulp-replace');
const zip = require('gulp-zip');
const pages = require('gh-pages');
const browserSync = require('browser-sync').create();
const sync = require('browser-sync').create();

gulp.task('prepare', () => {

Expand Down Expand Up @@ -95,7 +95,7 @@ gulp.task('publish', gulp.series(
));

gulp.task('serve', () => {
browserSync.init({
sync.init({
ui: false,
notify: false,
port: 3000,
Expand All @@ -104,6 +104,6 @@ gulp.task('serve', () => {
}
});
gulp.watch('index.html').on('change', () => {
browserSync.reload();
sync.reload();
});
});

0 comments on commit 80ea46b

Please sign in to comment.