Skip to content

Commit

Permalink
chore(deps): update all non-major dependencies (#225)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: arlo <webfansplz@gmail.com>
  • Loading branch information
renovate[bot] and webfansplz authored Feb 5, 2024
1 parent f61dc5e commit 6246779
Show file tree
Hide file tree
Showing 18 changed files with 452 additions and 495 deletions.
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"docs:preview": "vitepress preview"
},
"devDependencies": {
"@unocss/reset": "^0.58.4",
"@unocss/reset": "^0.58.5",
"@vueuse/core": "^10.7.2",
"unplugin-vue-components": "^0.26.0",
"vitepress": "1.0.0-rc.40",
"vitepress": "1.0.0-rc.41",
"vue": "^3.4.15"
}
}
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"version": "7.0.14",
"private": true,
"packageManager": "pnpm@8.15.0",
"packageManager": "pnpm@8.15.1",
"description": "DevTools for Vue.js",
"author": "webfansplz",
"license": "MIT",
Expand Down Expand Up @@ -64,14 +64,14 @@
"gen:vue-apis": "tsx ./scripts/vue-api-manifest.ts"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.3",
"@antfu/eslint-config": "2.6.4",
"@antfu/ni": "^0.21.12",
"@arethetypeswrong/cli": "^0.13.6",
"@types/chrome": "^0.0.259",
"@types/chrome": "^0.0.260",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.10",
"@unocss/eslint-plugin": "^0.58.4",
"@types/node": "^20.11.16",
"@unocss/eslint-plugin": "^0.58.5",
"@vue/devtools-core": "workspace:^",
"@vue/devtools-kit": "workspace:^",
"@vue/test-utils": "^2.4.4",
Expand All @@ -85,20 +85,20 @@
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.0",
"lint-staged": "^15.2.1",
"npm-run-all2": "^5.0.2",
"pnpm": "^8.15.0",
"progress": "^2.0.3",
"publint": "^0.2.7",
"readdir-glob": "^1.1.3",
"regex-extra": "^0.2.2",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"taze": "^0.13.2",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unocss": "^0.58.4",
"unocss": "^0.58.5",
"vite": "^5.0.12",
"vitest": "^1.2.2",
"vue": "^3.4.15"
Expand Down
16 changes: 8 additions & 8 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
"vite": "^3.1.0 || ^4.0.0-0 || ^5.0.0-0"
},
"dependencies": {
"@unocss/preset-icons": "^0.58.4",
"@unocss/runtime": "^0.58.4",
"@unocss/preset-icons": "^0.58.5",
"@unocss/runtime": "^0.58.5",
"@vue/devtools-core": "workspace:^",
"@vue/devtools-kit": "workspace:^",
"@vue/devtools-shared": "workspace:^",
Expand All @@ -35,19 +35,19 @@
"colord": "^2.9.3",
"fuse.js": "^7.0.0",
"minimatch": "^9.0.3",
"shiki": "1.0.0-beta.0",
"shiki": "1.0.0-beta.5",
"splitpanes": "^3.1.5",
"vis-network": "^9.1.9",
"vite-hot-client": "^0.2.3",
"vue-router": "^4.2.5",
"vue-virtual-scroller": "2.0.0-beta.8"
},
"devDependencies": {
"@iconify/json": "^2.2.176",
"@types/node": "^20.11.10",
"@iconify/json": "^2.2.180",
"@types/node": "^20.11.16",
"@types/splitpanes": "^2.2.6",
"@unocss/core": "^0.58.4",
"@unocss/reset": "^0.58.4",
"@unocss/core": "^0.58.5",
"@unocss/reset": "^0.58.5",
"@vitejs/plugin-vue": "^5.0.3",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"dayjs": "^1.11.10",
Expand All @@ -56,7 +56,7 @@
"pinia": "^2.1.7",
"sass": "^1.70.0",
"simple-git-hooks": "^2.9.0",
"unocss": "^0.58.4",
"unocss": "^0.58.5",
"unplugin": "^1.6.0",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/core/src/vite-rpc/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ export interface ModuleInfo {
}

export interface ViteRPCFunctions {
root(): string
getGraph(): Promise<ModuleInfo[]>
getStaticAssets(): Promise<AssetInfo[]>
getImageMeta(filepath: string): Promise<ImageMeta | undefined>
getTextAssetContent(filepath: string, limit?: number): Promise<string | undefined>
root: () => string
getGraph: () => Promise<ModuleInfo[]>
getStaticAssets: () => Promise<AssetInfo[]>
getImageMeta: (filepath: string) => Promise<ImageMeta | undefined>
getTextAssetContent: (filepath: string, limit?: number) => Promise<string | undefined>
moduleUpdated: () => void
assetsUpdated: () => void
}
2 changes: 1 addition & 1 deletion packages/devtools-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"devDependencies": {
"@types/speakingurl": "^13.0.6",
"vue": "^3.4.14",
"vue": "^3.4.15",
"vue-router": "^4.2.5"
}
}
14 changes: 7 additions & 7 deletions packages/devtools-kit/src/types/hook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ export interface DevToolsHook {

export interface VueHooks {
on: {
vueAppInit(fn: DevToolsEvent[DevToolsHooks.APP_INIT]): void
vueAppConnected(fn: DevToolsEvent[DevToolsHooks.APP_CONNECTED]): void
componentAdded(fn: DevToolsEvent[DevToolsHooks.COMPONENT_ADDED]): () => void
componentUpdated(fn: DevToolsEvent[DevToolsHooks.COMPONENT_UPDATED]): () => void
componentRemoved(fn: DevToolsEvent[DevToolsHooks.COMPONENT_REMOVED]): () => void
setupDevtoolsPlugin(fn: DevToolsEvent[DevToolsHooks.SETUP_DEVTOOLS_PLUGIN]): void
vueAppInit: (fn: DevToolsEvent[DevToolsHooks.APP_INIT]) => void
vueAppConnected: (fn: DevToolsEvent[DevToolsHooks.APP_CONNECTED]) => void
componentAdded: (fn: DevToolsEvent[DevToolsHooks.COMPONENT_ADDED]) => () => void
componentUpdated: (fn: DevToolsEvent[DevToolsHooks.COMPONENT_UPDATED]) => () => void
componentRemoved: (fn: DevToolsEvent[DevToolsHooks.COMPONENT_REMOVED]) => () => void
setupDevtoolsPlugin: (fn: DevToolsEvent[DevToolsHooks.SETUP_DEVTOOLS_PLUGIN]) => void
}
setupDevToolsPlugin(pluginDescriptor: PluginDescriptor, setupFn: PluginSetupFunction): void
setupDevToolsPlugin: (pluginDescriptor: PluginDescriptor, setupFn: PluginSetupFunction) => void
}
2 changes: 1 addition & 1 deletion packages/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@vue/devtools-core": "workspace:^",
"@vue/devtools-shared": "workspace:^",
"electron": "^28.2.0",
"electron": "^28.2.1",
"execa": "^8.0.1",
"h3": "^1.10.1",
"ip": "^1.1.8",
Expand Down
4 changes: 2 additions & 2 deletions packages/overlay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"@vueuse/core": "^10.7.2"
},
"devDependencies": {
"@iconify/json": "^2.2.176",
"@types/node": "^20.11.10",
"@iconify/json": "^2.2.180",
"@types/node": "^20.11.16",
"@vitejs/plugin-vue": "^5.0.3",
"sass": "^1.70.0",
"vite": "^5.0.12",
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@vueuse/core": "^10.7.2",
"pinia": "^2.1.7",
"vue": "^3.4.15",
"vue-i18n": "^9.9.0",
"vue-i18n": "^9.9.1",
"vue-router": "^4.2.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
"rfdc": "^1.3.1"
},
"devDependencies": {
"@types/node": "^20.11.10"
"@types/node": "^20.11.16"
}
}
4 changes: 2 additions & 2 deletions packages/ui-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
"preview": "vite preview"
},
"dependencies": {
"@unocss/reset": "^0.58.4",
"@unocss/reset": "^0.58.5",
"@vue/devtools-ui": "workspace:*",
"@vueuse/core": "^10.7.2",
"unocss": "^0.58.4",
"unocss": "^0.58.5",
"vue": "^3.4.15"
},
"devDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.9",
"@types/node": "^20.11.10",
"@unocss/reset": "^0.58.4",
"@types/node": "^20.11.16",
"@unocss/reset": "^0.58.5",
"@vitejs/plugin-vue": "^5.0.3",
"floating-vue": "5.2.2",
"histoire": "^0.17.9",
"unocss": "^0.58.4",
"unocss": "^0.58.5",
"vite-plugin-dts": "^3.7.2"
}
}
8 changes: 4 additions & 4 deletions packages/ui/src/components/Dropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ defineEmits<{
'update:visible': [value: boolean]
}>()
defineSlots<{
default(): any
popper(props: { hide: () => void }): any
'button-icon'(): any
'button-icon-right'(): any
default: () => any
popper: (props: { hide: () => void }) => any
'button-icon': () => any
'button-icon-right': () => any
}>()
provide('$ui-dropdown-disabled', computed(() => props.disabled))
</script>
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/components/Select.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ const emit = defineEmits<{
}>()
defineSlots<{
item(props: { item: { label: Label, value: Value }, active: boolean, disabled: boolean }): any
button(): any
item: (props: { item: { label: Label, value: Value }, active: boolean, disabled: boolean }) => any
button: () => any
}>()
const slots = useSlots()
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"vite-plugin-vue-inspector": "^4.0.2"
},
"devDependencies": {
"@types/node": "^20.11.10",
"@types/node": "^20.11.16",
"fast-glob": "^3.3.2",
"image-meta": "^0.2.0",
"pathe": "^1.1.2"
Expand Down
2 changes: 1 addition & 1 deletion packages/vue-termui-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"vue-termui": "*"
},
"devDependencies": {
"@types/node": "^18.19.10",
"@types/node": "^18.19.14",
"@vitejs/plugin-vue": "^5.0.3",
"@vue-termui/cli": "*",
"@vue/compiler-sfc": "^3.4.15",
Expand Down
4 changes: 2 additions & 2 deletions packages/webpack-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/devtools": "workspace:*",
"@vue/devtools-api": "workspace:*",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1"
"eslint-plugin-vue": "^9.21.1"
},
"eslintConfig": {
"env": {
Expand Down
Loading

0 comments on commit 6246779

Please sign in to comment.