Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a487cf6

Browse files
committed
chore: upgrade deps
1 parent 7168351 commit a487cf6

File tree

13 files changed

+1527
-1801
lines changed

13 files changed

+1527
-1801
lines changed

eslint.config.ts

+40-44
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,48 @@
22
import { sxzz } from '@sxzz/eslint-config'
33
import vueMacros from './packages/eslint-config/src/index.ts'
44

5-
export default sxzz([
6-
vueMacros,
7-
{
8-
name: 'global-ignores',
9-
ignores: ['playground/nuxt', 'playground/astro'],
10-
},
11-
{
12-
name: 'global-rules',
13-
rules: {
14-
'@typescript-eslint/no-dynamic-delete': 'off',
5+
export default sxzz()
6+
.removeRules('@typescript-eslint/no-dynamic-delete')
7+
.append([
8+
vueMacros,
9+
{
10+
name: 'global-ignores',
11+
ignores: ['playground/nuxt', 'playground/astro'],
1512
},
16-
},
17-
{
18-
name: 'markdown',
19-
files: ['**/*.md/*.{js,ts,vue}'],
20-
rules: {
21-
'no-var': 'off',
22-
'import/no-mutable-exports': 'off',
23-
'import/first': 'off',
13+
{
14+
name: 'markdown',
15+
files: ['**/*.md/*.{js,ts,vue}'],
16+
rules: {
17+
'no-var': 'off',
18+
'import/no-mutable-exports': 'off',
19+
'import/first': 'off',
20+
},
2421
},
25-
},
26-
{
27-
name: 'playground/vue3',
28-
files: ['playground/vue3/**'],
29-
rules: {
30-
'no-debugger': 'off',
31-
'no-console': 'off',
22+
{
23+
name: 'playground/vue3',
24+
files: ['playground/vue3/**'],
25+
rules: {
26+
'no-debugger': 'off',
27+
'no-console': 'off',
28+
},
3229
},
33-
},
34-
{
35-
name: 'allow-default-export',
36-
files: [
37-
'**/helper/*',
38-
'playground/vue3/**',
39-
'packages/{volar,eslint-config}/**',
40-
'**/raw.ts',
41-
],
42-
rules: {
43-
'import/no-default-export': 'off',
30+
{
31+
name: 'allow-default-export',
32+
files: [
33+
'**/helper/*',
34+
'playground/vue3/**',
35+
'packages/{volar,eslint-config}/**',
36+
'**/raw.ts',
37+
],
38+
rules: {
39+
'import/no-default-export': 'off',
40+
},
4441
},
45-
},
46-
{
47-
name: 'sort-config',
48-
files: ['**/vue-macros.config.ts'],
49-
rules: {
50-
'perfectionist/sort-objects': 'error',
42+
{
43+
name: 'sort-config',
44+
files: ['**/vue-macros.config.ts'],
45+
rules: {
46+
'perfectionist/sort-objects': 'error',
47+
},
5148
},
52-
},
53-
])
49+
])

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "monorepo-vue-macros",
33
"version": "3.0.0-beta.3",
44
"private": true,
5-
"packageManager": "pnpm@10.5.2",
5+
"packageManager": "pnpm@10.6.1",
66
"description": "Monorepo for Vue Macros.",
77
"type": "module",
88
"author": "三咲智子 Kevin Deng <[email protected]>",
@@ -37,9 +37,9 @@
3737
"devDependencies": {
3838
"@babel/types": "catalog:",
3939
"@rspack/core": "^1.2.7",
40-
"@sxzz/eslint-config": "^5.2.0",
41-
"@sxzz/prettier-config": "^2.2.0",
42-
"@types/node": "^22.13.9",
40+
"@sxzz/eslint-config": "^6.0.0",
41+
"@sxzz/prettier-config": "^2.2.1",
42+
"@types/node": "^22.13.10",
4343
"@unocss/eslint-plugin": "catalog:",
4444
"@vitest/coverage-v8": "catalog:",
4545
"@vitest/ui": "catalog:",
@@ -52,8 +52,8 @@
5252
"expect-type": "^1.2.0",
5353
"fast-glob": "^3.3.3",
5454
"jiti": "^2.4.2",
55-
"monoman": "^0.6.6",
56-
"oxc-transform": "^0.54.0",
55+
"monoman": "^0.6.7",
56+
"oxc-transform": "^0.56.5",
5757
"pkg-types": "^2.1.0",
5858
"prettier": "catalog:",
5959
"publint": "^0.3.8",
@@ -62,16 +62,16 @@
6262
"rolldown": "^1.0.0-beta.3",
6363
"rollup": "catalog:",
6464
"rollup-plugin-dts": "^6.1.1",
65-
"taze": "^18.6.0",
65+
"taze": "^18.7.1",
6666
"tsup": "^8.4.0",
6767
"tsx": "^4.19.3",
6868
"typescript": "catalog:",
6969
"unocss": "catalog:",
7070
"unplugin": "catalog:",
71-
"unplugin-isolated-decl": "^0.12.0",
72-
"unplugin-macros": "^0.16.0",
73-
"unplugin-quansync": "^0.3.3",
74-
"unplugin-raw": "^0.4.3",
71+
"unplugin-isolated-decl": "^0.13.2",
72+
"unplugin-macros": "^0.16.1",
73+
"unplugin-quansync": "^0.3.4",
74+
"unplugin-raw": "^0.4.4",
7575
"unplugin-unused": "^0.4.3",
7676
"vite": "catalog:",
7777
"vitest": "catalog:",

packages/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
},
5252
"dependencies": {
5353
"@vue-macros/common": "workspace:*",
54-
"oxc-resolver": "^4.2.0"
54+
"oxc-resolver": "^5.0.0"
5555
},
5656
"engines": {
5757
"node": ">=20.18.0"

packages/astro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
},
6161
"devDependencies": {
6262
"@vitejs/plugin-vue": "catalog:",
63-
"astro": "^5.4.1"
63+
"astro": "^5.4.2"
6464
},
6565
"engines": {
6666
"node": ">=20.18.0"

packages/common/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
},
6060
"dependencies": {
6161
"@vue/compiler-sfc": "catalog:",
62-
"ast-kit": "^1.4.0",
62+
"ast-kit": "^1.4.2",
6363
"local-pkg": "^1.1.1",
64-
"magic-string-ast": "^0.7.0",
64+
"magic-string-ast": "^0.8.0",
6565
"unplugin-utils": "^0.2.4"
6666
},
6767
"devDependencies": {

packages/macros/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"@vue-macros/short-vmodel": "workspace:*",
145145
"@vue-macros/volar": "workspace:*",
146146
"unplugin": "catalog:",
147-
"unplugin-combine": "^1.2.0",
147+
"unplugin-combine": "^1.2.1",
148148
"unplugin-vue-define-options": "workspace:*"
149149
},
150150
"devDependencies": {

packages/nuxt/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@
5353
"nuxt": "^3.0.0"
5454
},
5555
"dependencies": {
56-
"@nuxt/kit": "^3.15.4",
56+
"@nuxt/kit": "^3.16.0",
5757
"@vue-macros/common": "workspace:*",
5858
"vue-macros": "workspace:*"
5959
},
6060
"devDependencies": {
61-
"@nuxt/devtools": "^2.1.3",
62-
"@nuxt/schema": "^3.15.4",
61+
"@nuxt/devtools": "^2.2.1",
62+
"@nuxt/schema": "^3.16.0",
6363
"@vue/language-core": "catalog:"
6464
},
6565
"engines": {

packages/volar/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
"@vue/language-core": "catalog:",
199199
"jiti": "^2.4.2",
200200
"muggle-string": "^0.4.1",
201-
"ts-macro": "^0.1.17"
201+
"ts-macro": "^0.1.19"
202202
},
203203
"devDependencies": {
204204
"@vue/compiler-dom": "catalog:",

playground/astro/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@astrojs/vue": "^5.0.7",
1515
"@vue-macros/astro": "workspace:*",
1616
"@vueuse/core": "catalog:",
17-
"astro": "^5.4.1",
17+
"astro": "^5.4.2",
1818
"vue": "catalog:",
1919
"vue-macros": "workspace:*"
2020
}

playground/nuxt/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"@vueuse/core": "catalog:"
1212
},
1313
"devDependencies": {
14-
"@nuxt/devtools": "^2.1.3",
14+
"@nuxt/devtools": "^2.2.1",
1515
"@unocss/nuxt": "catalog:",
16-
"nuxt": "^3.15.4",
17-
"quasar": "^2.18.0"
16+
"nuxt": "^3.16.0",
17+
"quasar": "^2.18.1"
1818
}
1919
}

playground/vue3/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@
1212
},
1313
"dependencies": {
1414
"@vueuse/core": "catalog:",
15-
"quasar": "^2.18.0",
15+
"quasar": "^2.18.1",
1616
"vue": "catalog:"
1717
},
1818
"devDependencies": {
19-
"@rollup/plugin-commonjs": "^28.0.2",
19+
"@rollup/plugin-commonjs": "^28.0.3",
2020
"@rollup/plugin-node-resolve": "^16.0.0",
2121
"@stylexjs/stylex": "catalog:",
2222
"@vitejs/plugin-vue": "catalog:",
2323
"@vitejs/plugin-vue-jsx": "catalog:",
2424
"esbuild": "catalog:",
2525
"rollup": "catalog:",
26-
"type-fest": "^4.36.0",
26+
"type-fest": "^4.37.0",
2727
"typescript": "catalog:",
2828
"unocss": "catalog:",
2929
"unplugin-oxc": "catalog:",
3030
"unplugin-vue": "catalog:",
3131
"vite": "catalog:",
32-
"vite-hyper-config": "^0.6.0",
32+
"vite-hyper-config": "^0.6.1",
3333
"vite-plugin-inspect": "^11.0.0",
3434
"vite-plugin-stylex": "catalog:",
3535
"vue-macros": "workspace:*",

0 commit comments

Comments
 (0)