diff --git a/package.json b/package.json index 9b480ecd..a16ab881 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build", "build:docker": "./build-local-docker-image.sh", "changeset": "pnpm exec changeset", - "check": "pnpm run check:dep && pnpm run check:circular && pnpm run check:type && pnpm run check:spell", + "check": "pnpm run check:dep && pnpm run check:circular && pnpm run check:type && pnpm run check:cspell", "check:circular": "vsh check-circular", "check:dep": "vsh check-dep", "check:cspell": "cspell lint \"**/*.ts\" \"**/README.md\" \".changeset/*.md\" --no-progress", diff --git a/packages/@core/forward/helpers/package.json b/packages/@core/forward/helpers/package.json index 42ddabc7..07380e58 100644 --- a/packages/@core/forward/helpers/package.json +++ b/packages/@core/forward/helpers/package.json @@ -36,7 +36,6 @@ } }, "dependencies": { - "@vben-core/toolkit": "workspace:*", "@vben-core/typings": "workspace:*", "vue-router": "^4.4.0" } diff --git a/packages/@core/locales/src/index.ts b/packages/@core/locales/src/index.ts index 6e079cd8..480686e3 100644 --- a/packages/@core/locales/src/index.ts +++ b/packages/@core/locales/src/index.ts @@ -36,6 +36,7 @@ async function setupI18n(app: App, options: LocaleSetupOptions = {}) { } export { $t, i18n, loadLocaleMessages, loadLocalesMap, setupI18n }; +export type { CompileError } from '@intlify/core-base'; export { useI18n } from 'vue-i18n'; -export type { Locale } from 'vue-i18n'; export type { ImportLocaleFn }; +export type { Locale } from 'vue-i18n'; diff --git a/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toast.vue b/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toast.vue index 9990f44f..d114de92 100644 --- a/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toast.vue +++ b/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toast.vue @@ -9,7 +9,7 @@ import { useForwardPropsEmits, } from 'radix-vue'; -import { type ToastProps, toastVariants } from '.'; +import { type ToastProps, toastVariants } from './toast'; const props = defineProps(); diff --git a/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toaster.vue b/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toaster.vue index bd8b647f..52c4a244 100644 --- a/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toaster.vue +++ b/packages/@core/ui-kit/shadcn-ui/src/components/ui/toast/Toaster.vue @@ -1,14 +1,12 @@