Skip to content

Commit 96fbf0b

Browse files
committed
chore: update
2 parents 420d411 + 31988a9 commit 96fbf0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+863
-765
lines changed

alias.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export const alias = {
2323
'@vitejs/devtools-ui/unocss': r('ui/src/unocss/index.ts'),
2424
'@vitejs/devtools-ui/components': r('ui/src/components'),
2525
'@vitejs/devtools-ui/composables': r('ui/src/composables'),
26+
'@vitejs/devtools-ui/utils': r('ui/src/utils'),
2627
}
2728

2829
// update tsconfig.base.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"type": "module",
33
"version": "0.0.0-alpha.26",
44
"private": true,
5-
"packageManager": "pnpm@10.28.1",
5+
"packageManager": "pnpm@10.28.2",
66
"scripts": {
77
"build": "turbo run build",
88
"build:debug": "NUXT_DEBUG_BUILD=true pnpm -r run build",

packages/rolldown/src/app/components/assets/BaseInfo.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
22
import type { RolldownAssetInfo } from '~~/shared/types'
3+
import DisplayBadge from '@vitejs/devtools-ui/components/DisplayBadge.vue'
34
45
defineProps<{
56
asset: RolldownAssetInfo

packages/rolldown/src/app/components/assets/List.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
22
import type { RolldownAssetInfo } from '~~/shared/types'
3+
import DataVirtualList from '@vitejs/devtools-ui/components/DataVirtualList.vue'
34
45
defineProps<{
56
assets: RolldownAssetInfo[]

packages/rolldown/src/app/components/chart/ModuleFlamegraph.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import type {
77
RolldownResolveInfo,
88
SessionContext,
99
} from '~~/shared/types'
10+
import DisplayDuration from '@vitejs/devtools-ui/components/DisplayDuration.vue'
1011
import { Flamegraph, normalizeTreeNode } from 'nanovis'
1112
import { computed, nextTick, onMounted, onUnmounted, ref, shallowRef, useTemplateRef, watch } from 'vue'
1213
import { normalizeTimestamp } from '~/utils/format'

packages/rolldown/src/app/components/chunks/BaseInfo.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import type { RolldownChunkImport, RolldownChunkInfo } from '~~/shared/types/data'
33
import { useRoute } from '#app/composables/router'
44
import { NuxtLink } from '#components'
5+
import DisplayBadge from '@vitejs/devtools-ui/components/DisplayBadge.vue'
56
import { computed } from 'vue'
67
78
const props = withDefaults(defineProps<{

packages/rolldown/src/app/components/chunks/FlatList.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<script setup lang="ts">
22
import type { RolldownChunkInfo, SessionContext } from '~~/shared/types'
3+
import DataVirtualList from '@vitejs/devtools-ui/components/DataVirtualList.vue'
4+
import DisplayBadge from '@vitejs/devtools-ui/components/DisplayBadge.vue'
35
46
withDefaults(defineProps<{
57
chunks: Array<RolldownChunkInfo & { id: string }>

packages/rolldown/src/app/components/chunks/Graph.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import type { ChunkImport } from '@rolldown/debug'
33
import type { RolldownChunkInfo, SessionContext } from '~~/shared/types/data'
44
import type { ModuleGraphLink, ModuleGraphNode } from '~/composables/module-graph'
55
import { useRoute } from '#app/composables/router'
6+
import DisplayBadge from '@vitejs/devtools-ui/components/DisplayBadge.vue'
67
import { computed, nextTick, unref } from 'vue'
78
import { createModuleGraph } from '~/composables/module-graph'
89

packages/rolldown/src/app/components/chunks/Imports.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script lang="ts" setup>
22
import type { RolldownChunkImport } from '~~/shared/types/data'
3+
import DisplayBadge from '@vitejs/devtools-ui/components/DisplayBadge.vue'
34
45
defineProps<{
56
imports: RolldownChunkImport[]

packages/rolldown/src/app/components/data/AssetDetails.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
import type { RolldownAssetInfo, RolldownChunkInfo, SessionContext } from '~~/shared/types'
33
import { useRoute } from '#app/composables/router'
44
import { useRpc } from '#imports'
5+
import DisplayBadge from '@vitejs/devtools-ui/components/DisplayBadge.vue'
6+
import DisplayCloseButton from '@vitejs/devtools-ui/components/DisplayCloseButton.vue'
7+
import DisplayIconButton from '@vitejs/devtools-ui/components/DisplayIconButton.vue'
58
import { useAsyncState } from '@vueuse/core'
69
import { computed, ref } from 'vue'
710
import { settings } from '~~/app/state/settings'

0 commit comments

Comments
 (0)