Skip to content

Commit

Permalink
docs: watch task should be a function (#847)
Browse files Browse the repository at this point in the history
  • Loading branch information
g1eny0ung authored Nov 27, 2024
1 parent 510c1c8 commit 9b7578d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function buildStyles() {

exports.buildStyles = buildStyles;
exports.watch = function () {
gulp.watch('./sass/**/*.scss', ['sass']);
gulp.watch('./sass/**/*.scss', buildStyles);
};
```

Expand Down

0 comments on commit 9b7578d

Please sign in to comment.