Skip to content

Commit e3b2df4

Browse files
committed
Ui-overlay : move
1 parent 0b5ef50 commit e3b2df4

29 files changed

+7
-7
lines changed

bot-core/build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ tasks.register<Copy>(copyUiTask) {
3232
into(layout.buildDirectory.dir("resources/main/admin"))
3333
}
3434

35-
val copyOverlayTask = "copyOverlayToServer"
36-
tasks.register<Copy>(copyOverlayTask) {
37-
dependsOn(":bot-overlay:pnpmBuild")
35+
val copyUiOverlayTask = "copyUiOverlayToServer"
36+
tasks.register<Copy>(copyUiOverlayTask) {
37+
dependsOn(":ui-overlay:pnpmBuild")
3838

3939
doFirst {
4040
delete(
4141
layout.buildDirectory.dir("resources/main/overlay")
4242
)
4343
}
4444

45-
from(layout.buildDirectory.dir("../../bot-overlay/dist"))
45+
from(layout.buildDirectory.dir("../../ui-overlay/dist"))
4646
into(layout.buildDirectory.dir("resources/main/overlay"))
4747
}
4848

4949
tasks.withType<Jar> {
50-
dependsOn(copyUiTask, copyOverlayTask)
50+
dependsOn(copyUiTask, copyUiOverlayTask)
5151
}
5252

5353
ksp {

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ include(":obs-client")
2222
include(":twitch-api")
2323

2424
include(":bot-ui")
25-
include(":bot-overlay")
25+
include(":ui-overlay")
2626
include(":annotation-generator")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

bot-overlay/build.gradle.kts renamed to ui-overlay/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ tasks.register<PnpmTask>("pnpmBuild") {
2828
outputs.dir("dist")
2929
}
3030

31-
description = "bot-overlay"
31+
description = "ui-overlay"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)