Skip to content

Commit 0ba7657

Browse files
committed
Run formatting task after documentation generation
The tasks under the `deps` key run in parallel, which is not appropriate for the task that is intended to format the output from the documentation generation tasks. The generation tasks can run concurrently, so they stay in `deps`, but the formatting task must be placed in `cmds`, which will cause it to run after all tasks in `deps` have finished.
1 parent c679381 commit 0ba7657

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Taskfile.yml

+1
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ tasks:
109109
deps:
110110
- task: go:cli-docs
111111
- task: go:rule-docs
112+
cmds:
112113
# Make the formatting consistent with the non-generated Markdown
113114
- task: general:format-prettier
114115

0 commit comments

Comments
 (0)