Skip to content

Commit 3e17dec

Browse files
authored
fix: ci can not build success. (#325)
1 parent c40910c commit 3e17dec

File tree

5 files changed

+29
-17
lines changed

5 files changed

+29
-17
lines changed

console/.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ coverage
2929
*.sw?
3030

3131
# Generated files by unplugin-auto-import
32-
.stylelintcache
33-
auto-imports.d.ts
34-
components.d.ts
32+
/.stylelintcache
33+
/auto-imports.d.ts
34+
/components.d.ts
3535

3636
# ts build info, such as version
3737
#/tsconfig.tsbuildinfo

console/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
},
1313
"dependencies": {
1414
"@element-plus/icons-vue": "^2.1.0",
15-
"@runikaros/api-client": "0.0.22",
16-
"@runikaros/shared": "0.0.2",
15+
"@runikaros/api-client": "^0.0.22",
16+
"@runikaros/shared": "^0.0.2",
1717
"@uppy/core": "^3.2.0",
1818
"@uppy/dashboard": "^3.4.0",
1919
"@uppy/drag-drop": "^3.0.2",

console/pnpm-lock.yaml

Lines changed: 18 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

console/src/components/global-search/GlobalSearchDialog.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
<script setup lang="ts">
22
import { ref, nextTick, computed } from 'vue';
3-
// eslint-disable-next-line no-unused-vars
4-
import { Search } from '@element-plus/icons-vue';
53
import { apiClient } from '@/utils/api-client';
6-
import { FileHint, SubjectHint } from 'packages/api-client/dist.ts';
4+
import { FileHint, SubjectHint } from '@runikaros/api-client';
75
import { ElMessage } from 'element-plus';
86
97
const props = withDefaults(

server/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ task pnpmInstall(type: NpxTask) {
8484
args = ["install"]
8585
}
8686

87-
//build {
88-
// // build frontend before build
89-
// tasks.getByName('compileJava').dependsOn('buildFrontend')
90-
// tasks.getByName("buildFrontend").dependsOn("pnpmInstall")
91-
//}
87+
build {
88+
// build frontend before build
89+
tasks.getByName('compileJava').dependsOn('buildFrontend')
90+
tasks.getByName("buildFrontend").dependsOn("pnpmInstall")
91+
}
9292

9393

9494
tasks.named('test') {

0 commit comments

Comments
 (0)