diff --git a/docs/.vitepress/config.ts b/docs/.vitepress/config.ts index ecff28d7..50df663d 100644 --- a/docs/.vitepress/config.ts +++ b/docs/.vitepress/config.ts @@ -1,5 +1,5 @@ -import { defineConfig } from 'vitepress' import type { DefaultTheme } from 'vitepress' +import { defineConfig } from 'vitepress' import vite from './vite.config' const GETTING_STARTED: DefaultTheme.NavItemWithLink[] = [ diff --git a/docs/package.json b/docs/package.json index 41edaa7b..f356aca1 100644 --- a/docs/package.json +++ b/docs/package.json @@ -12,6 +12,6 @@ "@vueuse/core": "^11.0.3", "unplugin-vue-components": "^0.27.4", "vitepress": "1.3.4", - "vue": "^3.5.3" + "vue": "^3.5.5" } } diff --git a/eslint-plugins/test-utils.ts b/eslint-plugins/test-utils.ts index 67a856a9..37ed3ab2 100644 --- a/eslint-plugins/test-utils.ts +++ b/eslint-plugins/test-utils.ts @@ -1,7 +1,7 @@ -import tsParser from '@typescript-eslint/parser' +import type { RuleTesterInitOptions, TestCasesOptions } from 'eslint-vitest-rule-tester' +import tsParser from '@typescript-eslint/parser' import { run as _run } from 'eslint-vitest-rule-tester' -import type { RuleTesterInitOptions, TestCasesOptions } from 'eslint-vitest-rule-tester' export * from 'eslint-vitest-rule-tester' diff --git a/package.json b/package.json index 0eb6b89d..9b712d84 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "type": "module", "version": "7.3.2", "private": true, - "packageManager": "pnpm@9.9.0", + "packageManager": "pnpm@9.10.0", "description": "DevTools for Vue.js", "author": "webfansplz", "license": "MIT", @@ -72,16 +72,16 @@ "gen:vue-apis": "tsx ./scripts/vue-api-manifest.ts" }, "devDependencies": { - "@antfu/eslint-config": "^3.4.1", + "@antfu/eslint-config": "^3.6.2", "@antfu/ni": "^0.23.0", - "@arethetypeswrong/cli": "^0.16.1", + "@arethetypeswrong/cli": "^0.16.2", "@clack/prompts": "^0.7.0", - "@types/chrome": "^0.0.270", + "@types/chrome": "^0.0.271", "@types/degit": "^2.8.6", "@types/fs-extra": "^11.0.4", "@types/node": "^20.16.5", - "@typescript-eslint/parser": "^8.4.0", - "@typescript-eslint/utils": "^8.4.0", + "@typescript-eslint/parser": "^8.5.0", + "@typescript-eslint/utils": "^8.5.0", "@unocss/eslint-plugin": "^0.62.3", "@vue/devtools-core": "workspace:^", "@vue/devtools-kit": "workspace:^", @@ -98,25 +98,25 @@ "fs-extra": "^11.2.0", "jsdom": "^25.0.0", "lint-staged": "^15.2.10", - "npm-run-all2": "^6.2.2", + "npm-run-all2": "^6.2.3", "picocolors": "^1.1.0", - "pnpm": "^9.9.0", + "pnpm": "^9.10.0", "progress": "^2.0.3", "publint": "^0.2.10", "readdir-glob": "^2.0.0", "regex-extra": "^0.2.2", "semver": "^7.6.3", "simple-git-hooks": "^2.11.1", - "taze": "^0.16.7", + "taze": "^0.16.9", "tsup": "^8.2.4", - "tsx": "^4.19.0", - "turbo": "^2.1.1", - "typescript": "^5.5.4", + "tsx": "^4.19.1", + "turbo": "^2.1.2", + "typescript": "^5.6.2", "unbuild": "^2.0.0", "unocss": "^0.62.3", - "vite": "^5.4.3", - "vitest": "^2.0.5", - "vue": "^3.5.3" + "vite": "^5.4.5", + "vitest": "^2.1.1", + "vue": "^3.5.5" }, "simple-git-hooks": { "pre-commit": "pnpm lint-staged" diff --git a/packages/applet/package.json b/packages/applet/package.json index 00c88de4..91e2aaa3 100644 --- a/packages/applet/package.json +++ b/packages/applet/package.json @@ -35,15 +35,15 @@ "@vue/devtools-ui": "workspace:^", "lodash-es": "^4.17.21", "perfect-debounce": "^1.0.0", - "shiki": "^1.16.2", + "shiki": "^1.17.6", "splitpanes": "^3.1.5", "vue-virtual-scroller": "2.0.0-beta.8" }, "devDependencies": { "@types/lodash-es": "^4.17.12", - "unplugin-vue": "^5.1.4", + "unplugin-vue": "^5.1.5", "vite-plugin-dts": "^3.9.1", - "vue": "^3.5.3", - "vue-router": "^4.4.3" + "vue": "^3.5.5", + "vue-router": "^4.4.5" } } diff --git a/packages/applet/src/components/basic/NodeTag.vue b/packages/applet/src/components/basic/NodeTag.vue index c1587576..74e1d5ef 100644 --- a/packages/applet/src/components/basic/NodeTag.vue +++ b/packages/applet/src/components/basic/NodeTag.vue @@ -1,6 +1,6 @@ diff --git a/packages/ui/src/composables/shiki.ts b/packages/ui/src/composables/shiki.ts index 4527d0ff..18e037c2 100644 --- a/packages/ui/src/composables/shiki.ts +++ b/packages/ui/src/composables/shiki.ts @@ -1,6 +1,6 @@ +import type { BuiltinLanguage, HighlighterCore } from 'shiki' import { createHighlighterCore, createJavaScriptRegexEngine } from 'shiki/core' import { shallowRef } from 'vue' -import type { BuiltinLanguage, HighlighterCore } from 'shiki' export const shiki = shallowRef() diff --git a/packages/ui/storybook/Button.story.vue b/packages/ui/storybook/Button.story.vue index 0b2ff73c..c032e006 100644 --- a/packages/ui/storybook/Button.story.vue +++ b/packages/ui/storybook/Button.story.vue @@ -1,10 +1,10 @@