Skip to content

Commit

Permalink
fix(styles): fix watch gulp task (#3405)
Browse files Browse the repository at this point in the history
  • Loading branch information
alizedebray authored Aug 14, 2024
1 parent 14b44cb commit e8460d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/styles/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ gulp.task('sass:tests', () => {
gulp.task(
'watch',
gulp.series('temporarily-copy-token-files', () => {
return gulp.watch('./src/**/*.scss', 'copy');
return gulp.watch('./src/**/*.scss', gulp.series('copy'));
}),
);

Expand Down

0 comments on commit e8460d8

Please sign in to comment.