From 4e3f8aab30422bc17fcfc3d80536c34232401b25 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sat, 23 May 2020 12:57:31 -0400 Subject: [PATCH] Make API Jar --- typescript.build.gradle | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/typescript.build.gradle b/typescript.build.gradle index 515104e..156d2f7 100644 --- a/typescript.build.gradle +++ b/typescript.build.gradle @@ -36,7 +36,7 @@ task typescript(group: 'typescript', type: Exec) { typescript.dependsOn typescriptInstall -task typescriptAPI(group: 'typescript', type: Tar) { +task typescriptAPI(group: 'typescript', type: Jar) { into('types') { from new File(typescriptRootFile as File, 'src/types') } @@ -45,10 +45,6 @@ task typescriptAPI(group: 'typescript', type: Tar) { } classifier 'api' - - compression Compression.GZIP - - extension 'tar.gz' } typescriptAPI.dependsOn typescript