Skip to content

Commit ad6ae1d

Browse files
authored
Merge pull request #19 from vbenjs/feature/type-check-0705
fix: Typecheck and loop dependency problem repair
2 parents f163133 + 527023a commit ad6ae1d

File tree

21 files changed

+462
-750
lines changed

21 files changed

+462
-750
lines changed

.github/release-drafter.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,17 @@ categories:
1616
- "enhancement"
1717
- title: "🐞 Bug Fixes"
1818
labels:
19-
- "fix"
20-
- "bugfix"
2119
- "bug"
2220
- title: 📝 Documentation updates
2321
labels:
2422
- "documentation"
25-
- "docs"
2623
- title: 👻 Maintenance
2724
labels:
2825
- "chore"
2926
- "dependencies"
3027
collapse-after: 5
3128
- title: 🚦 Tests
3229
labels:
33-
- "test"
3430
- "tests"
3531
- title: "Breaking"
3632
label: "breaking"

.tazerc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"exclude": ["zx", "eslint"]
2+
"exclude": ["zx", "eslint", "eslint-plugin-unused-imports"]
33
}

internal/lint-configs/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"eslint-plugin-prettier": "^5.1.3",
4747
"eslint-plugin-regexp": "^2.6.0",
4848
"eslint-plugin-unicorn": "^54.0.0",
49-
"eslint-plugin-unused-imports": "^4.0.0",
49+
"eslint-plugin-unused-imports": "^3.2.0",
5050
"eslint-plugin-vitest": "^0.5.4",
5151
"eslint-plugin-vue": "^9.27.0",
5252
"globals": "^15.8.0",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "vben-admin",
3-
"version": "5.0.0-alpha.1",
2+
"name": "vben-admin-pro",
3+
"version": "5.0.0",
44
"private": true,
55
"keywords": [
66
"monorepo",

packages/@core/ui-kit/shadcn-ui/src/components/floating-button-group/floating-button-group.vue

Lines changed: 0 additions & 46 deletions
This file was deleted.

packages/@core/ui-kit/shadcn-ui/src/components/floating-button-group/index.ts

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/@core/ui-kit/shadcn-ui/src/components/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export * from './checkbox';
88
export * from './context-menu';
99
export * from './count-to-animator';
1010
export * from './dropdown-menu';
11-
export * from './floating-button-group';
1211
export * from './full-screen';
1312
export * from './hover-card';
1413
export * from './icon';

packages/@core/ui-kit/shadcn-ui/src/components/ui/select/SelectContent.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import {
1212
useForwardPropsEmits,
1313
} from 'radix-vue';
1414
15-
import { SelectScrollDownButton, SelectScrollUpButton } from '.';
15+
import SelectScrollDownButton from './SelectScrollDownButton.vue';
16+
import SelectScrollUpButton from './SelectScrollUpButton.vue';
1617
1718
defineOptions({
1819
inheritAttrs: false,

packages/business/access/src/generate-menu-and-routes/generate-routes-backend.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { mapTree } from '@vben-core/toolkit';
1515
async function generateRoutesByBackend(
1616
options: GeneratorMenuAndRoutesOptions,
1717
): Promise<RouteRecordRaw[]> {
18-
const { fetchMenuListAsync, layoutMap, pageMap } = options;
18+
const { fetchMenuListAsync, layoutMap = {}, pageMap = {} } = options;
1919

2020
try {
2121
const menuRoutes = await fetchMenuListAsync?.();

packages/business/layouts/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"@vben-core/stores": "workspace:*",
4747
"@vben-core/tabs-ui": "workspace:*",
4848
"@vben-core/toolkit": "workspace:*",
49-
"@vben/constants": "workspace:*",
5049
"@vben/locales": "workspace:*",
5150
"@vben/widgets": "workspace:*",
5251
"vue": "^3.4.31",

0 commit comments

Comments
 (0)