Skip to content
This repository was archived by the owner on Jan 6, 2024. It is now read-only.

Commit 7f30810

Browse files
feat: enhance graph (#99)
1 parent 539552c commit 7f30810

File tree

19 files changed

+484
-91
lines changed

19 files changed

+484
-91
lines changed

.github/renovate.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": ["config:base", "schedule:weekly", "group:allNonMajor"],
2+
"extends": ["config:base", "schedule:weekly", "group:allNonMajor", ":disableDependencyDashboard"],
33
"labels": ["dependencies"],
44
"pin": false,
55
"rangeStrategy": "bump",

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
"birpc": "^0.2.12",
6565
"execa": "^7.1.1",
6666
"json-editor-vue": "^0.10.6",
67+
"minimatch": "^9.0.2",
6768
"nanoid": "^4.0.2",
6869
"sirv": "^2.0.3",
6970
"splitpanes": "^3.1.5",
@@ -88,6 +89,7 @@
8889
"@unocss/eslint-config": "^0.53.4",
8990
"@unocss/reset": "^0.53.4",
9091
"@vitejs/plugin-vue": "^4.2.3",
92+
"@vitejs/plugin-vue-jsx": "^3.0.1",
9193
"bumpp": "^9.1.1",
9294
"codemirror": "^6.0.1",
9395
"codemirror-theme-vars": "^0.1.2",

pnpm-lock.yaml

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

src/client/auto-imports.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ declare global {
7878
const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
7979
const onUnmounted: typeof import('vue')['onUnmounted']
8080
const onUpdated: typeof import('vue')['onUpdated']
81+
const openInEditor: typeof import('./utils/index')['openInEditor']
8182
const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
8283
const pick: typeof import('./utils/index')['pick']
8384
const provide: typeof import('vue')['provide']
@@ -195,6 +196,7 @@ declare global {
195196
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
196197
const useGamepad: typeof import('@vueuse/core')['useGamepad']
197198
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
199+
const useGraphSettings: typeof import('./composables/graph')['useGraphSettings']
198200
const useGroupedTabStore: typeof import('./composables/tabs')['useGroupedTabStore']
199201
const useGroupedTabs: typeof import('./composables/tabs')['useGroupedTabs']
200202
const useIdle: typeof import('@vueuse/core')['useIdle']

0 commit comments

Comments
 (0)