Skip to content

Commit f584493

Browse files
committed
Merge pull request #21 from appleboy/patch-1
add missing semicolon.
2 parents 97bd5f7 + 03456f2 commit f584493

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile-example-API.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ gulp.task('browser-sync', function () {
2525
gulp.task('default', ['browser-sync'], function () {
2626
gulp.watch('css/*.css', function (file) {
2727
if (file.type === "changed") {
28-
browserSync.reload(file.path)
28+
browserSync.reload(file.path);
2929
}
3030
});
3131
});

0 commit comments

Comments
 (0)