Skip to content

Commit 534e225

Browse files
committed
Refine console to ui
Signed-off-by: Ryan Wang <[email protected]>
1 parent 2c831b5 commit 534e225

19 files changed

+6
-6
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ application-local.properties
7272

7373
/workplace/
7474
*/workplace/
75-
/console/node_modules/
75+
/ui/node_modules/
7676
/app/src/main/resources/console/

app/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ dependencies {
2424
testImplementation 'org.springframework.boot:spring-boot-starter-test'
2525
}
2626

27-
tasks.register('copyConsole', Copy) {
28-
dependsOn ':console:build'
29-
from project(':console').layout.buildDirectory.dir('dist')
27+
tasks.register('copyUI', Copy) {
28+
dependsOn ':ui:build'
29+
from project(':ui').layout.buildDirectory.dir('dist')
3030
into layout.buildDirectory.dir('resources/main/console')
3131
}
3232

3333
tasks.named('processResources') {
34-
dependsOn('copyConsole')
34+
dependsOn('copyUI')
3535
}
3636

3737
test {

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ rootProject.name = 'plugin-feed'
88

99
include 'api'
1010
include 'app'
11-
include 'console'
11+
include 'ui'
File renamed without changes.
File renamed without changes.

console/.gitignore ui/.gitignore

File renamed without changes.
File renamed without changes.

console/env.d.ts ui/env.d.ts

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)