Skip to content

Commit

Permalink
Fix CSS not rebuilding when .tsx files change
Browse files Browse the repository at this point in the history
Update the watch glob used by the gulp task.
  • Loading branch information
robertknight committed Jan 17, 2024
1 parent ce46589 commit 915a6e0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gulpfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ gulp.task(
[
'node_modules/katex/dist/katex.min.css',
'src/styles/**/*.scss',
'src/sidebar/components/**/*.js',
'src/annotator/components/**/*.js',
'dev-server/ui-playground/components/**/*.js',
'src/**/*.tsx',
'dev-server/ui-playground/**/*.tsx',
],
gulp.task('build-css')
);
Expand Down

0 comments on commit 915a6e0

Please sign in to comment.