Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kirklin committed Oct 8, 2023
1 parent d6141e6 commit a89a6b4
Show file tree
Hide file tree
Showing 14 changed files with 875 additions and 911 deletions.
6 changes: 6 additions & 0 deletions apps/admin/autoResolver/auto-imports.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ declare global {
const h: typeof import('vue')['h']
const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
const inject: typeof import('vue')['inject']
const injectLocal: typeof import('@vueuse/core')['injectLocal']
const isBackendMode: typeof import('../src/composables/setting/usePermissionSetting')['isBackendMode']
const isDark: typeof import('../src/composables/dark')['isDark']
const isDefined: typeof import('@vueuse/core')['isDefined']
Expand Down Expand Up @@ -71,6 +72,7 @@ declare global {
const onUpdated: typeof import('vue')['onUpdated']
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
const provide: typeof import('vue')['provide']
const provideLocal: typeof import('@vueuse/core')['provideLocal']
const reactify: typeof import('@vueuse/core')['reactify']
const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
const reactive: typeof import('vue')['reactive']
Expand Down Expand Up @@ -349,6 +351,7 @@ declare module 'vue' {
readonly h: UnwrapRef<typeof import('vue')['h']>
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
readonly inject: UnwrapRef<typeof import('vue')['inject']>
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
Expand Down Expand Up @@ -378,6 +381,7 @@ declare module 'vue' {
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
readonly provide: UnwrapRef<typeof import('vue')['provide']>
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
Expand Down Expand Up @@ -649,6 +653,7 @@ declare module '@vue/runtime-core' {
readonly h: UnwrapRef<typeof import('vue')['h']>
readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
readonly inject: UnwrapRef<typeof import('vue')['inject']>
readonly injectLocal: UnwrapRef<typeof import('@vueuse/core')['injectLocal']>
readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
Expand Down Expand Up @@ -678,6 +683,7 @@ declare module '@vue/runtime-core' {
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
readonly provide: UnwrapRef<typeof import('vue')['provide']>
readonly provideLocal: UnwrapRef<typeof import('@vueuse/core')['provideLocal']>
readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
Expand Down
26 changes: 13 additions & 13 deletions apps/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@celeris/admin",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@8.7.6",
"packageManager": "pnpm@8.8.0",
"description": "Celeris Web",
"author": "Kirk Lin (https://github.com/kirklin)",
"license": "MIT",
Expand Down Expand Up @@ -34,18 +34,18 @@
"@celeris/utils": "workspace:*",
"@formily/core": "^2.2.29",
"@formily/vue": "^2.2.29",
"@tanstack/query-persist-client-core": "^4.35.3",
"@tanstack/query-sync-storage-persister": "^4.35.3",
"@tanstack/vue-query": "^4.35.3",
"@tanstack/vue-table": "^8.10.0",
"@tanstack/query-persist-client-core": "^4.36.1",
"@tanstack/query-sync-storage-persister": "^4.36.1",
"@tanstack/vue-query": "^4.36.1",
"@tanstack/vue-table": "^8.10.6",
"destr": "^2.0.1",
"nprogress": "^0.2.0",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"pkg-types": "^1.0.3",
"vue": "^3.3.4",
"vue-i18n": "^9.4.1",
"vue-router": "^4.2.4"
"vue-i18n": "^9.5.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@celeris/admin-api": "workspace:*",
Expand All @@ -55,15 +55,15 @@
"@celeris/hooks": "workspace:*",
"@celeris/types": "workspace:*",
"@celeris/vite": "workspace:*",
"@vitejs/plugin-vue": "^4.3.4",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/compiler-dom": "^3.3.4",
"@vue/test-utils": "^2.4.1",
"jsdom": "^22.1.0",
"pnpm": "^8.7.6",
"pnpm": "^8.8.0",
"typescript": "^5.2.2",
"unocss": "^0.55.7",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"vue-tsc": "^1.8.11"
"unocss": "^0.56.5",
"vite": "^4.4.11",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.16"
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@8.7.6",
"packageManager": "pnpm@8.8.0",
"author": "Kirk Lin (https://github.com/kirklin)",
"license": "MIT",
"homepage": "https://github.com/kirklin/celeris-web",
Expand Down Expand Up @@ -59,32 +59,32 @@
"devDependencies": {
"@celeris/tsconfig": "workspace:*",
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.7.1",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@kirklin/eslint-config": "^0.5.6",
"@types/fs-extra": "^11.0.2",
"@types/node": "^20.6.2",
"@types/nprogress": "^0.2.0",
"@types/node": "^20.8.3",
"@types/nprogress": "^0.2.1",
"@vitest/coverage-c8": "^0.33.0",
"bumpp": "^9.2.0",
"cross-env": "^7.0.3",
"directory-tree": "^3.5.1",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint": "^8.51.0",
"esno": "^0.17.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"rimraf": "^5.0.5",
"scripts": "workspace:*",
"taze": "^0.11.2",
"taze": "^0.11.3",
"treeify": "^1.1.0",
"typescript": "^5.2.2",
"unbuild": "^2.0.0",
"vite": "^4.4.9",
"vitest": "^0.34.4"
"vite": "^4.4.11",
"vitest": "^0.34.6"
},
"lint-staged": {
"**/*": "eslint --fix"
Expand Down
8 changes: 4 additions & 4 deletions packages/node/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"dependencies": {
"@celeris/utils": "workspace:*",
"vite": "^4.4.9"
"vite": "^4.4.11"
},
"devDependencies": {
"@celeris/styles": "workspace:*",
Expand All @@ -24,10 +24,10 @@
"rollup-plugin-visualizer": "^5.9.2",
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.16.6",
"unplugin-config": "^0.0.8",
"unplugin-config": "^0.0.13",
"unplugin-vue-components": "^0.25.2",
"vite-plugin-inspect": "^0.7.38",
"vite-plugin-inspect": "^0.7.40",
"vite-plugin-pwa": "^0.16.5",
"vite-plugin-vue-devtools": "^1.0.0-rc.4"
"vite-plugin-vue-devtools": "^1.0.0-rc.5"
}
}
2 changes: 1 addition & 1 deletion packages/web/CAComponents/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"devDependencies": {
"@celeris/constants": "workspace:*",
"@celeris/utils": "workspace:*",
"naive-ui": "2.34.4",
"naive-ui": "2.35.0",
"vue": "^3.3.4"
}
}
2 changes: 1 addition & 1 deletion packages/web/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
"@celeris/assets": "workspace:*",
"@celeris/types": "workspace:*",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
"vue-router": "^4.2.5"
}
}
4 changes: 2 additions & 2 deletions packages/web/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"dependencies": {
"@celeris/types": "workspace:*",
"@celeris/utils": "workspace:*",
"@vueuse/core": "^10.4.1",
"@vueuse/integrations": "^10.4.1"
"@vueuse/core": "^10.5.0",
"@vueuse/integrations": "^10.5.0"
},
"devDependencies": {}
}
2 changes: 1 addition & 1 deletion packages/web/locale/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"@celeris/utils": "workspace:*",
"iso-639-1": "^3.1.0",
"vue": "^3.3.4",
"vue-i18n": "^9.4.1"
"vue-i18n": "^9.5.0"
}
}
2 changes: 1 addition & 1 deletion packages/web/request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@celeris/locale": "workspace:*",
"@celeris/types": "workspace:*",
"@celeris/utils": "workspace:*",
"axios": "^1.5.0",
"axios": "^1.5.1",
"qs": "^6.11.2"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/web/styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"devDependencies": {
"@css-render/plugin-bem": "^0.15.12",
"@css-render/vue3-ssr": "^0.15.12",
"@iconify/json": "^2.2.117",
"@iconify/json": "^2.2.125",
"css-render": "^0.15.12",
"unocss": "^0.55.7",
"vite": "^4.4.9"
"unocss": "^0.56.5",
"vite": "^4.4.11"
}
}
2 changes: 1 addition & 1 deletion packages/web/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"devDependencies": {
"pinia": "2.1.6",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
"vue-router": "^4.2.5"
}
}
4 changes: 2 additions & 2 deletions packages/web/utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"@kirklin/logger": "0.0.2",
"colord": "^2.9.3",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.9",
"dayjs": "^1.11.10",
"lodash-es": "^4.17.21",
"path-to-regexp": "^6.2.1"
},
Expand All @@ -28,6 +28,6 @@
"@types/lodash-es": "^4.17.9",
"@vue/runtime-core": "3.3.4",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
"vue-router": "^4.2.5"
}
}
Loading

2 comments on commit a89a6b4

@vercel
Copy link

@vercel vercel bot commented on a89a6b4 Oct 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

celeris-web-api – ./services/admin

celeris-web-api-kirklin.vercel.app
celeris-web-api.vercel.app
celeris-web-api-git-master-kirklin.vercel.app

@vercel
Copy link

@vercel vercel bot commented on a89a6b4 Oct 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

celeris-web – ./apps/admin

celeris-web-kirklin.vercel.app
celeris-web.vercel.app
celeris-web-git-master-kirklin.vercel.app

Please sign in to comment.