Skip to content

Commit

Permalink
Fix watch paths to documentation configs
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrotherham committed Jul 14, 2023
1 parent 61fa8bb commit 7e412fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/govuk-frontend-review/tasks/watch.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const watch = (options) => gulp.parallel(
*/
task.name('compile:scss watch', () =>
gulp.watch([
`${slash(paths.root)}/sassdoc.config.yaml`,
`${slash(paths.app)}/sassdoc.config.yaml`,
`${slash(paths.app)}/src/**/*.scss`,
`${slash(paths.package)}/dist/govuk/**/*.scss`
], styles(options))
Expand All @@ -41,7 +41,7 @@ export const watch = (options) => gulp.parallel(
*/
task.name('compile:js watch', () =>
gulp.watch([
`${slash(paths.root)}/typedoc.config.js`,
`${slash(paths.app)}/typedoc.config.js`,
`${slash(paths.package)}/dist/govuk/**/*.mjs`
], scripts(options))
)
Expand Down

0 comments on commit 7e412fe

Please sign in to comment.