This is an automated email from the ASF dual-hosted git repository. thiagohp pushed a commit to branch feature/coffeescript-to-typescript in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit f9ecabfddd09a7ce724f33c245664372c01af374 Author: Thiago H. de Paula Figueiredo <thi...@arsmachina.com.br> AuthorDate: Sat Apr 19 15:58:11 2025 -0300 TAP5-2804: fixing typeScriptDocs() task type --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 9bd845b41..53a8f8edb 100755 --- a/build.gradle +++ b/build.gradle @@ -500,7 +500,7 @@ task aggregateJavadoc(type: Javadoc) { } } -task typeScriptDocs(type: Exec) { +task typeScriptDocs() { group "Documentation" description "Builds typedoc documentation for all TypeScript sources" dependsOn project(":tapestry-core").tasks.generateTypeScriptDocs @@ -574,6 +574,7 @@ task zippedSources(type: Zip) { } task zippedApidoc(type: Zip) { + dependsOn typeScriptDocs dependsOn aggregateJavadoc description "Zip archive of the project's aggregate JavaDoc and TypeScript documentation" group "Release artifact"