Skip to content

Commit 9a1562d

Browse files
committed
chore: update deps
1 parent e99d5c2 commit 9a1562d

11 files changed

Lines changed: 489 additions & 845 deletions

File tree

package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,22 @@
1616
"watch": "tsdown --watch"
1717
},
1818
"devDependencies": {
19-
"@antfu/ni": "^28.0.0",
20-
"@so1ve/eslint-config": "^3.21.0",
21-
"@so1ve/prettier-config": "^3.21.0",
22-
"@types/node": "^25.0.3",
23-
"@typescript/native-preview": "7.0.0-dev.20251223.1",
24-
"@vue-macros/test-utils": "^3.1.1",
25-
"bumpp": "^10.3.2",
26-
"changelogithub": "^14.0.0",
27-
"eslint": "^9.39.2",
28-
"prettier": "^3.7.4",
29-
"tsdown": "^0.18.2",
30-
"typescript": "^5.9.3",
31-
"vite": "^7.3.0",
32-
"vite-tsconfig-paths": "^6.0.3",
33-
"vitest": "^4.0.16",
34-
"vue": "^3.5.26",
35-
"vue-tsc": "^3.2.1"
19+
"@antfu/ni": "catalog:",
20+
"@so1ve/eslint-config": "catalog:",
21+
"@so1ve/prettier-config": "catalog:",
22+
"@types/node": "catalog:",
23+
"@typescript/native-preview": "catalog:",
24+
"@vue-macros/test-utils": "catalog:",
25+
"bumpp": "catalog:",
26+
"changelogithub": "catalog:",
27+
"eslint": "catalog:",
28+
"prettier": "catalog:",
29+
"tsdown": "catalog:",
30+
"typescript": "catalog:peer",
31+
"vite": "catalog:",
32+
"vite-tsconfig-paths": "catalog:",
33+
"vitest": "catalog:",
34+
"vue": "catalog:peer",
35+
"vue-tsc": "catalog:"
3636
}
3737
}

packages/complex-types/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@
5959
"@nuxt/kit": "catalog:",
6060
"@vue.ts/language": "workspace:",
6161
"@vue.ts/shared": "workspace:",
62-
"@vue/shared": "^3.5.26",
62+
"@vue/shared": "catalog:",
6363
"magic-string": "catalog:",
6464
"unplugin": "catalog:",
65-
"unplugin-utils": "^0.3.1"
65+
"unplugin-utils": "catalog:"
6666
},
6767
"devDependencies": {
6868
"@nuxt/schema": "catalog:",
69-
"@vue-macros/better-define": "^3.1.1",
69+
"@vue-macros/better-define": "catalog:",
7070
"astro": "catalog:",
7171
"rollup": "catalog:"
7272
},

packages/complex-types/playground/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
"dev": "vite"
44
},
55
"dependencies": {
6-
"vue": "^3.5.26"
6+
"vue": "catalog:"
77
},
88
"devDependencies": {
9-
"@vitejs/plugin-vue": "^6.0.3",
9+
"@vitejs/plugin-vue": "catalog:",
1010
"@vue.ts/complex-types": "workspace:",
11-
"@vue/tsconfig": "^0.8.1",
11+
"@vue/tsconfig": "catalog:",
1212
"vite": "catalog:",
13-
"vite-plugin-inspect": "^11.3.3"
13+
"vite-plugin-inspect": "catalog:"
1414
}
1515
}

packages/complex-types/src/core/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ export const resolveOptions: (options: Options) => ResolvedOptions =
1515
createOptionsResolver(defaultOptions);
1616

1717
const quotesReg = /"/g;
18+
1819
export const escapeQuotes = (s: string): string => s.replace(quotesReg, '\\"');

packages/language/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"access": "public"
3535
},
3636
"dependencies": {
37-
"@volar/typescript": "~2.4.27",
37+
"@volar/typescript": "catalog:volar",
3838
"@vue.ts/shared": "workspace:",
39-
"@vue/language-core": "~3.2.1"
39+
"@vue/language-core": "catalog:volar"
4040
}
4141
}

packages/language/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ function createLanguageWorker(
168168
type Language = ReturnType<typeof createLanguage>;
169169

170170
const LANGUAGE_GLOBAL_KEY = "__VUETS_LANGUAGE__";
171+
171172
export function ensureLanguage(tsconfigPath: string): void {
172173
if (!(globalThis as any)[LANGUAGE_GLOBAL_KEY]) {
173174
(globalThis as any)[LANGUAGE_GLOBAL_KEY] = createLanguage(tsconfigPath);

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"access": "public"
3434
},
3535
"dependencies": {
36-
"defu": "^6.1.4"
36+
"defu": "catalog:utils"
3737
},
3838
"devDependencies": {
3939
"unplugin": "catalog:",

packages/shared/src/utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import type { Defu } from "defu";
55
import { defu } from "defu";
66

77
const windowsPathReg = /\\/g;
8+
89
export const normalizePath = (id: string): string =>
910
id.replace(windowsPathReg, "/");
1011

0 commit comments

Comments
 (0)