Skip to content

Commit

Permalink
fix: use *.mjs extensions in docs watch task
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Feb 7, 2025
1 parent 2ba7a70 commit 265b4de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ gulp.task('watch:package-js', () => {
// Watch the docs js files and the bundled package js and rebuild
gulp.task('watch:docs-js', () => {
gulp.watch(
['docs/assets/**/*.js', 'package/moj/all.js'],
['docs/assets/**/*.mjs', 'package/moj/all.js'],
gulp.series(['docs:scripts'])
)
})
Expand Down

0 comments on commit 265b4de

Please sign in to comment.