Skip to content

Commit 4830fd1

Browse files
committed
chore: update deps
1 parent 2fff22b commit 4830fd1

36 files changed

+5404
-5413
lines changed

docs/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@
88
"preview": "nuxi preview"
99
},
1010
"dependencies": {
11-
"@iconify-json/ph": "^1.2.0",
12-
"@iconify-json/simple-icons": "^1.2.3",
13-
"@nuxt/content": "^2.13.2",
14-
"@nuxt/devtools": "^1.5.0",
15-
"@nuxt/fonts": "^0.8.0",
11+
"@iconify-json/ph": "^1.2.1",
12+
"@iconify-json/simple-icons": "^1.2.13",
13+
"@nuxt/content": "^2.13.4",
14+
"@nuxt/devtools": "^1.6.1",
15+
"@nuxt/fonts": "^0.10.2",
1616
"@nuxt/image": "1.8.0",
17-
"@nuxt/ui-pro": "^1.4.2",
18-
"@nuxthq/studio": "^2.1.1",
19-
"@nuxtjs/plausible": "^1.0.2",
20-
"@vueuse/core": "^11.1.0",
21-
"@vueuse/nuxt": "^11.1.0",
22-
"nuxt": "^3.13.2",
23-
"nuxt-og-image": "^3.0.2"
17+
"@nuxt/ui-pro": "^1.5.0",
18+
"@nuxthq/studio": "^2.2.1",
19+
"@nuxtjs/plausible": "^1.2.0",
20+
"@vueuse/core": "^12.0.0",
21+
"@vueuse/nuxt": "^12.0.0",
22+
"nuxt": "^3.14.1592",
23+
"nuxt-og-image": "^4.0.0"
2424
},
2525
"resolutions": {
2626
"@nuxt/ui": "2.15.2"

docs/pnpm-lock.yaml

Lines changed: 2267 additions & 1956 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

local.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ import { defineNuxtModule, logger } from '@nuxt/kit'
2222
import { getPort } from 'get-port-please'
2323
import { resolve } from 'pathe'
2424
import { searchForWorkspaceRoot } from 'vite'
25+
import { startSubprocess } from './packages/devtools-kit/src/index'
2526
import { defaultOptions } from './packages/devtools/src/constant'
2627
import { packageDir } from './packages/devtools/src/dirs'
2728
import { enableModule } from './packages/devtools/src/module-main'
28-
import { startSubprocess } from './packages/devtools-kit/src/index'
2929

3030
export type { ModuleOptions }
3131

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "1.6.1",
55
"private": true,
6-
"packageManager": "pnpm@9.11.0",
6+
"packageManager": "pnpm@9.14.2",
77
"repository": {
88
"type": "git",
99
"url": "git+https://github.com/nuxt/devtools.git"

packages/devtools/client/components/AssetDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang="ts">
2-
import type { AssetInfo, CodeSnippet } from '~/../src/types'
32
import { devtoolsUiShowNotification } from '#imports'
43
import { computedAsync, useTimeAgo, useVModel } from '@vueuse/core'
54
import { computed, ref } from 'vue'
5+
import type { AssetInfo, CodeSnippet } from '~/../src/types'
66
import { ensureDevAuthToken } from '~/composables/dev-auth'
77
import { useCopy, useOpenInEditor } from '~/composables/editor'
88
import { rpc } from '~/composables/rpc'

packages/devtools/client/components/AssetDropZone.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script lang="ts" setup>
2-
import type { AssetEntry } from '~/../src/types'
32
import { devtoolsUiShowNotification } from '#imports'
43
import { useEventListener, useVModel } from '@vueuse/core'
54
import { ref } from 'vue'
5+
import type { AssetEntry } from '~/../src/types'
66
import { ensureDevAuthToken } from '~/composables/dev-auth'
77
import { rpc, wsConnecting, wsError } from '~/composables/rpc'
88
import { telemetry } from '~/composables/telemetry'

packages/devtools/client/components/AssetFontPreview.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang="ts">
2-
import type { AssetInfo } from '~/../src/types'
32
import { useStyleTag } from '@vueuse/core'
43
import { hash } from 'ohash'
54
import { computed } from 'vue'
5+
import type { AssetInfo } from '~/../src/types'
66
77
const props = defineProps<{
88
asset: AssetInfo

packages/devtools/client/components/AssetGridItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
2-
import type { AssetInfo } from '~/../src/types'
32
import { computed } from 'vue'
3+
import type { AssetInfo } from '~/../src/types'
44
55
const props = defineProps<{
66
asset: AssetInfo

packages/devtools/client/components/AssetListItem.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
2-
import type { AssetInfo } from '~/../src/types'
32
import { useVModel } from '@vueuse/core'
43
import { computed, ref } from 'vue'
4+
import type { AssetInfo } from '~/../src/types'
55
66
const props = withDefaults(defineProps<{
77
item: any

packages/devtools/client/components/ComponentsGraph.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<script setup lang="ts">
2-
import type { ComponentRelationship } from '~/../src/types'
32
import type { Component, NuxtLayout, NuxtPage } from 'nuxt/schema'
43
import type { Data, Node, Options } from 'vis-network'
54
import { useDebounce } from '@vueuse/core'
65
import { Network } from 'vis-network'
76
import { computed, onMounted, ref, watch } from 'vue'
7+
import type { ComponentRelationship } from '~/../src/types'
88
import { getColorMode } from '~/composables/client'
99
import { useLayouts, useServerConfig, useServerPages } from '~/composables/state'
1010
import { useDevToolsOptions } from '../composables/storage-options'

0 commit comments

Comments
 (0)