Skip to content

Commit 1182e94

Browse files
authored
chore: rename console folder to ui (#23)
Signed-off-by: Ryan Wang <[email protected]>
1 parent eb3a128 commit 1182e94

17 files changed

+566
-345
lines changed

.github/workflows/workflow.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: Setup pnpm cache
3939
with:
4040
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
41-
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/console/pnpm-lock.yaml') }}
41+
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/ui/pnpm-lock.yaml') }}
4242
restore-keys: |
4343
${{ runner.os }}-pnpm-store-
4444
- name: Install Frontend Dependencies

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ application-local.yml
7070
application-local.yaml
7171
application-local.properties
7272

73-
/admin-frontend/node_modules/
73+
/ui/node_modules/
7474
/workplace/
7575
/src/main/resources/console/

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ tasks.withType(JavaCompile).configureEach {
3232
}
3333

3434
node {
35-
nodeProjectDir = file("${project.projectDir}/console")
35+
nodeProjectDir = file("${project.projectDir}/ui")
3636
}
3737

3838
task buildFrontend(type: PnpmTask) {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

console/package.json renamed to ui/package.json

+14-14
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,34 @@
1111
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
1212
},
1313
"dependencies": {
14-
"@halo-dev/components": "^1.5.0",
15-
"@halo-dev/console-shared": "^2.6.0",
16-
"canvas-confetti": "^1.6.0",
17-
"vue": "^3.3.4"
14+
"@halo-dev/components": "^1.10.0",
15+
"@halo-dev/console-shared": "^2.11.0",
16+
"canvas-confetti": "^1.9.2",
17+
"vue": "^3.3.12"
1818
},
1919
"devDependencies": {
2020
"@halo-dev/ui-plugin-bundler-kit": "^1.0.0",
21-
"@iconify/json": "^2.2.76",
22-
"@rushstack/eslint-patch": "^1.3.1",
23-
"@types/canvas-confetti": "^1.6.0",
21+
"@iconify/json": "^2.2.159",
22+
"@rushstack/eslint-patch": "^1.6.1",
23+
"@types/canvas-confetti": "^1.6.4",
2424
"@types/jsdom": "^20.0.1",
25-
"@types/node": "^16.18.35",
25+
"@types/node": "^16.18.68",
2626
"@vitejs/plugin-vue": "^3.2.0",
2727
"@vitejs/plugin-vue-jsx": "^2.1.1",
2828
"@vue/eslint-config-prettier": "^7.1.0",
2929
"@vue/eslint-config-typescript": "^11.0.3",
30-
"@vue/test-utils": "^2.3.2",
30+
"@vue/test-utils": "^2.4.3",
3131
"@vue/tsconfig": "^0.1.3",
32-
"eslint": "^8.42.0",
33-
"eslint-plugin-vue": "^9.14.1",
32+
"eslint": "^8.56.0",
33+
"eslint-plugin-vue": "^9.19.2",
3434
"jsdom": "^19.0.0",
3535
"npm-run-all": "^4.1.5",
3636
"prettier": "^2.8.8",
37-
"sass": "^1.63.3",
37+
"sass": "^1.69.5",
3838
"typescript": "~4.7.4",
3939
"unplugin-icons": "^0.15.3",
40-
"vite": "^4.5.0",
40+
"vite": "^4.5.1",
4141
"vitest": "^0.24.5",
42-
"vue-tsc": "^1.6.5"
42+
"vue-tsc": "^1.8.25"
4343
}
4444
}

0 commit comments

Comments
 (0)