Skip to content

Commit

Permalink
fix: nextbuild task watch list
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed May 11, 2022
1 parent 33bf1e1 commit d145f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/next/taskfile.js
Expand Up @@ -1913,7 +1913,7 @@ export default async function (task) {
await task.watch('bin/*', 'bin', opts)
await task.watch('pages/**/*.+(js|ts|tsx)', 'pages', opts)
await task.watch('server/**/*.+(js|ts|tsx)', 'server', opts)
await task.watch('build/(!jest)/**/*.+(js|ts|tsx)', 'nextbuild', opts)
await task.watch('build/**/*.+(js|ts|tsx)', 'nextbuild', opts)
await task.watch('build/jest/**/*.+(js|ts|tsx)', 'nextbuildjest', opts)
await task.watch('export/**/*.+(js|ts|tsx)', 'nextbuildstatic', opts)
await task.watch('client/**/*.+(js|ts|tsx)', 'client', opts)
Expand Down

0 comments on commit d145f72

Please sign in to comment.