Skip to content

Commit ac189eb

Browse files
committed
feat: overview page added repo link
1 parent 37e4a37 commit ac189eb

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

packages/client/src/views/overview.svelte

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
svelteKit: outerLinks.svelteKit,
3838
pages: '/__devtools__/PagesAnalysis',
3939
components: '/__devtools__/Components',
40-
star: '',
41-
bug: '',
40+
star: 'https://github.com/ikun-svelte/ikun-svelte-devtools',
41+
bug: 'https://github.com/ikun-svelte/ikun-svelte-devtools/issues',
4242
setting: '/__devtools__/Setting'
4343
}
4444
</script>
@@ -75,6 +75,7 @@
7575
<span class="my-2 text-muted dark:text-white text-sm break-keep">svelte-kit v{svelteKitVersion}</span>
7676
</a>
7777
<i class="flex-col cursor-pointer
78+
font-sans
7879
hover:animate-LianYi
7980
hover:shadow-lg m-2 flex-c flex-1 rounded-lg min-w-124px
8081
h-100px border border-solid border-main">
@@ -84,7 +85,7 @@
8485
height="30px"
8586
color="text-tx-light">
8687
</KIcon>
87-
<span class="my-2 text-muted dark:text-white text-sm break-keep">{routesNum} pages</span>
88+
<span class="my-2 text-muted dark:text-white text-sm break-keep not-italic">{routesNum} pages</span>
8889
</Link>
8990
</i>
9091
<i class="flex-col cursor-pointer
@@ -97,7 +98,7 @@
9798
height="30px"
9899
color="text-tx-light">
99100
</KIcon>
100-
<span class="my-2 text-muted dark:text-white text-sm break-keep">{sfcNum} components</span>
101+
<span class="my-2 text-muted dark:text-white text-sm break-keep not-italic">{sfcNum} components</span>
101102
</Link>
102103
</i>
103104
</div>
@@ -132,7 +133,7 @@
132133
class="flex-c"
133134
to={links.setting}>
134135
<KIcon icon="{linkHover.setting}" color="text-tx-light"></KIcon>
135-
<span class="ml-1">Settings</span>
136+
<span class="ml-1 not-italic">Settings</span>
136137
</Link>
137138
</i>
138139
</div>

scripts/dev.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@ runTask('pnpm run build', 'packages/shared', 'build').finally(() => {
44
runTask('pnpm run build', 'packages/utils/client', 'build').finally(() => {
55
runTask('pnpm run build', 'packages/utils/server', 'build').finally(() => {
66
runTask('pnpm run build', 'packages/icons', 'build').finally(() => {
7-
runTask('pnpm run build', 'packages/server', 'build').finally(() => {
8-
9-
});
7+
runTask('pnpm run build', 'packages/server', 'build').finally(() => {});
108
});
119
});
1210
});
1311
});
14-

0 commit comments

Comments
 (0)