Skip to content

Commit 42b9ab8

Browse files
committed
feat: add comment
1 parent 67758f4 commit 42b9ab8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

build.gradle.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ plugins {
2424
}
2525

2626
task("clean").dependsOn("module_expose_clean")
27+
// This task is used for delete xx_expose module
2728
tasks.register("module_expose_clean"){
2829
doLast {
2930
println("execute clean expose")
3031
subprojects.forEach{ project->
32+
// Please exclude these project that you don't want to delete
3133
if(project.name.endsWith("_expose")){
3234
println("ModuleExpose: delete ${project.path}")
3335
project.projectDir.deleteRecursively()

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ include(":core:resource")
3737
includeWithJavaApi(":core:common")
3838
includeWithApi(":feature:settings")
3939
includeWithApi(":feature:search")
40-
includeWithApi(":feature:about")
40+
includeWithApi(":feature:about")

0 commit comments

Comments
 (0)