Skip to content

Commit 8c7aec3

Browse files
author
Oleksandr Dzhychko
committed
fix(ts-model-api): publish the contents of the dist directory
The old pattern only included the directory `dist` without its content. Because of that, the published ts-model-api package had no code and was broken.
1 parent 2621363 commit 8c7aec3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts-model-api/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ tasks.named("npm_run_generateKotlin") {
5858
val copyBuildTypeScriptForPackaging = tasks.create<Copy>("copyBuildTypeScriptForPackaging") {
5959
dependsOn(npmRunBuild)
6060
from(projectDir)
61-
include("dist")
61+
include("dist/**")
6262
into(layout.buildDirectory.dir("typeScriptForPackaging"))
6363
}
6464

0 commit comments

Comments
 (0)