Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Apr 14, 2023
1 parent 59d68b2 commit 387a1f2
Show file tree
Hide file tree
Showing 10 changed files with 220 additions and 300 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"devDependencies": {
"@nuxt-themes/docus": "^1.10.1",
"@nuxtjs/plausible": "^0.2.0",
"nuxt": "^3.3.3"
"nuxt": "^3.4.1"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@antfu/ni": "^0.21.3",
"@nuxt/devtools": "workspace:*",
"@nuxt/devtools-ui-kit": "workspace:*",
"@nuxt/module-builder": "^0.2.1",
"@nuxt/module-builder": "^0.3.0",
"@types/fs-extra": "^11.0.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.15.11",
Expand All @@ -35,7 +35,7 @@
"esno": "^0.16.3",
"execa": "^7.1.1",
"lint-staged": "^13.2.1",
"nuxt": "^3.3.3",
"nuxt": "^3.4.1",
"pathe": "^1.1.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
Expand Down
6 changes: 3 additions & 3 deletions packages/devtools-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@
"vite": "*"
},
"dependencies": {
"@nuxt/kit": "^3.3.3",
"@nuxt/schema": "^3.3.3",
"@nuxt/kit": "^3.4.1",
"@nuxt/schema": "^3.4.1",
"execa": "^7.1.1"
},
"devDependencies": {
"birpc": "^0.2.11",
"hookable": "^5.5.3",
"unbuild": "^1.2.0",
"unbuild": "^1.2.1",
"unimport": "^3.0.6",
"vue-router": "^4.1.6"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/devtools-kit/src/_types/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export interface VueInspectorClient {

export type VueInspectorData = VueInspectorClient['linkParams'] & VueInspectorClient['position']

export type AssetType = 'image' | 'font' | 'video' | 'audio' | 'text' | 'other'
export type AssetType = 'image' | 'font' | 'video' | 'audio' | 'text' | 'json' | 'other'

export interface AssetInfo {
path: string
Expand Down
10 changes: 5 additions & 5 deletions packages/devtools-ui-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@
"@iconify-json/carbon": "^1.1.16",
"@nuxt/devtools": "workspace:*",
"@nuxt/devtools-kit": "workspace:*",
"@nuxt/kit": "^3.3.3",
"@nuxt/kit": "^3.4.1",
"@nuxtjs/color-mode": "^3.2.0",
"@unocss/core": "^0.51.4",
"@unocss/nuxt": "^0.51.4",
"@unocss/preset-attributify": "^0.51.4",
"@unocss/preset-icons": "^0.51.4",
"@unocss/preset-mini": "^0.51.4",
"@unocss/reset": "^0.51.4",
"@vueuse/core": "^9.13.0",
"@vueuse/integrations": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"@vueuse/core": "^10.0.0",
"@vueuse/integrations": "^10.0.0",
"@vueuse/nuxt": "^10.0.0",
"defu": "^6.1.2",
"focus-trap": "^7.4.0",
"unocss": "^0.51.4",
"v-lazy-show": "^0.2.2"
},
"devDependencies": {
"nuxt": "^3.3.3"
"nuxt": "^3.4.1"
},
"publishConfig": {
"access": "public"
Expand Down
5 changes: 3 additions & 2 deletions packages/devtools-wizard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prepublishOnly": "pnpm build"
},
"dependencies": {
"consola": "^3.0.1",
"consola": "^3.0.2",
"diff": "^5.1.0",
"execa": "^7.1.1",
"global-dirs": "^3.0.1",
Expand All @@ -34,6 +34,7 @@
},
"devDependencies": {
"@types/diff": "^5.0.3",
"@types/prompts": "^2.4.4"
"@types/prompts": "^2.4.4",
"unbuild": "^1.2.1"
}
}
3 changes: 1 addition & 2 deletions packages/devtools/client/components/NpmVersionCheck.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script setup lang="ts">
import { useTemplatePromise } from 'vue-template-promise'
import type { NpmCommandOptions } from '../../src/types'
const props = withDefaults(
Expand All @@ -26,7 +25,7 @@ const shouldGotoTerminal = ref(true)
const shouldRestartServer = ref(true)
const restartDialogs = useRestartDialogs()
const PromiseConfirm = useTemplatePromise<boolean, [string]>()
const PromiseConfirm = createTemplatePromise<boolean, [string]>()
async function updateWithConfirm() {
const processId = await update(async (command) => {
Expand Down
4 changes: 1 addition & 3 deletions packages/devtools/client/components/RestartDialogs.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<script setup lang="ts">
import { useTemplatePromise } from 'vue-template-promise'
const nuxt = useNuxtApp()
const state = useRestartDialogs()
const client = useClient()
const PromiseConfirm = useTemplatePromise<boolean, [string]>()
const PromiseConfirm = createTemplatePromise<boolean, [string]>()
// @ts-expect-error - missing type
nuxt.hook('devtools:terminal:exit', ({ id, code }) => {
Expand Down
15 changes: 7 additions & 8 deletions packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@
"dependencies": {
"@nuxt/devtools-kit": "workspace:*",
"@nuxt/devtools-wizard": "workspace:*",
"@nuxt/kit": "^3.3.3",
"@nuxt/kit": "^3.4.1",
"birpc": "^0.2.11",
"consola": "^3.0.1",
"consola": "^3.0.2",
"execa": "^7.1.1",
"fast-glob": "^3.2.12",
"get-port-please": "^3.0.1",
Expand All @@ -54,7 +54,7 @@
"is-installed-globally": "^0.4.0",
"launch-editor": "^2.6.0",
"local-pkg": "^0.4.3",
"nypm": "^0.1.0",
"nypm": "^0.2.0",
"pacote": "^15.1.1",
"pathe": "^1.1.0",
"picocolors": "^1.0.0",
Expand All @@ -64,7 +64,7 @@
"sirv": "^2.0.2",
"tinyws": "^0.1.0",
"unimport": "^3.0.6",
"vite-plugin-inspect": "^0.7.20",
"vite-plugin-inspect": "^0.7.21",
"vite-plugin-vue-inspector": "^3.4.0",
"wait-on": "^7.0.1",
"which": "^3.0.0",
Expand All @@ -76,22 +76,22 @@
"@iconify-json/logos": "^1.1.24",
"@iconify-json/mdi": "^1.1.50",
"@iconify-json/ri": "^1.1.7",
"@iconify-json/tabler": "^1.1.71",
"@iconify-json/tabler": "^1.1.72",
"@nuxt/devtools": "workspace:*",
"@nuxtjs/color-mode": "^3.2.0",
"@unocss/nuxt": "^0.51.4",
"@unocss/preset-icons": "^0.51.4",
"@unocss/preset-uno": "^0.51.4",
"@unocss/runtime": "^0.51.4",
"@vueuse/nuxt": "^9.13.0",
"@vueuse/nuxt": "^10.0.0",
"esno": "^0.16.3",
"flatted": "^3.2.7",
"floating-vue": "2.0.0-beta.20",
"fuse.js": "^6.6.2",
"json-editor-vue": "^0.10.5",
"markdown-it": "^13.0.1",
"nanoid": "^4.0.2",
"nuxt": "^3.3.3",
"nuxt": "^3.4.1",
"nuxt-vitest": "^0.6.9",
"ofetch": "^1.0.1",
"ohash": "^1.0.0",
Expand All @@ -103,7 +103,6 @@
"vanilla-jsoneditor": "^0.16.1",
"vis-data": "^7.1.6",
"vis-network": "^9.1.6",
"vue-template-promise": "^0.1.3",
"vue-tsc": "^1.2.0",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0"
Expand Down

0 comments on commit 387a1f2

Please sign in to comment.