Skip to content

Commit 41b66c8

Browse files
authored
Merge branch 'main' into patch-1
2 parents 27c0320 + 63d5c7e commit 41b66c8

File tree

14 files changed

+1521
-1356
lines changed

14 files changed

+1521
-1356
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ node_modules
22
.DS_Store
33
dist
44
.idea
5+
.components-info.json
56
components.d.ts

examples/vite-vue2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"@vitejs/plugin-vue2": "^2.3.3",
1414
"cross-env": "^7.0.3",
1515
"unplugin-vue-components": "workspace:*",
16-
"vite": "^6.1.0"
16+
"vite": "^6.2.6"
1717
}
1818
}

examples/vite-vue2/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ const config: UserConfig = {
88
Components({
99
transformer: 'vue2',
1010
dts: 'src/components.d.ts',
11+
dumpComponentsInfo: true,
1112
}),
1213
],
1314
build: {

examples/vite-vue3/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@
99
"preview": "cross-env DEBUG=unplugin-vue-components:* vite preview"
1010
},
1111
"dependencies": {
12-
"vant": "^4.9.17"
12+
"vant": "^4.9.19"
1313
},
1414
"devDependencies": {
15-
"@iconify/json": "^2.2.307",
16-
"@vitejs/plugin-vue": "^5.2.1",
15+
"@iconify/json": "^2.2.327",
16+
"@vitejs/plugin-vue": "^5.2.3",
1717
"@vue/compiler-sfc": "^3.5.13",
1818
"cross-env": "^7.0.3",
1919
"has-pkg": "^0.0.1",
20-
"typescript": "^5.7.3",
21-
"unplugin-icons": "^22.0.0",
20+
"typescript": "^5.8.3",
21+
"unplugin-icons": "^22.1.0",
2222
"unplugin-vue-components": "workspace:*",
23-
"unplugin-vue-markdown": "^28.3.0",
24-
"vite": "^6.1.0",
25-
"vite-plugin-inspect": "^10.2.1",
23+
"unplugin-vue-markdown": "^28.3.1",
24+
"vite": "^6.2.6",
25+
"vite-plugin-inspect": "^11.0.0",
2626
"vue-router": "^4.5.0"
2727
}
2828
}

examples/vite-vue3/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const config: UserConfig = {
3737
componentPrefix: 'i',
3838
}),
3939
],
40+
dumpComponentsInfo: true,
4041
}),
4142
],
4243
build: {

examples/vue-cli-vue3/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
"lint": "vue-cli-service lint"
99
},
1010
"dependencies": {
11-
"core-js": "^3.40.0",
11+
"core-js": "^3.41.0",
1212
"vue": "^3.5.13"
1313
},
1414
"devDependencies": {
15-
"@babel/core": "^7.26.9",
15+
"@babel/core": "^7.26.10",
1616
"@vue/cli-plugin-babel": "~5.0.8",
1717
"@vue/cli-service": "~5.0.8",
1818
"unplugin-vue-components": "workspace:*"

examples/vue-cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
},
99
"dependencies": {
1010
"@vue/composition-api": "^1.7.2",
11-
"core-js": "^3.40.0",
11+
"core-js": "^3.41.0",
1212
"vue": "^3.5.13"
1313
},
1414
"devDependencies": {
1515
"@vue/cli-plugin-babel": "^5.0.8",
1616
"@vue/cli-plugin-typescript": "^5.0.8",
1717
"@vue/cli-service": "^5.0.8",
18-
"typescript": "^5.7.3",
19-
"unplugin-icons": "^22.0.0",
18+
"typescript": "^5.8.3",
19+
"unplugin-icons": "^22.1.0",
2020
"unplugin-vue-components": "workspace:*",
2121
"unplugin-vue2-script-setup": "^0.11.4"
2222
}

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "unplugin-vue-components",
33
"type": "module",
4-
"version": "28.4.1",
5-
"packageManager": "pnpm@10.5.2",
4+
"version": "28.5.0",
5+
"packageManager": "pnpm@10.8.0",
66
"description": "Components auto importing for Vue",
77
"author": "antfu <anthonyfu117@hotmail.com>",
88
"license": "MIT",
@@ -95,38 +95,38 @@
9595
"dependencies": {
9696
"chokidar": "^3.6.0",
9797
"debug": "^4.4.0",
98-
"local-pkg": "^1.0.0",
98+
"local-pkg": "^1.1.1",
9999
"magic-string": "^0.30.17",
100100
"mlly": "^1.7.4",
101101
"tinyglobby": "^0.2.12",
102-
"unplugin": "^2.2.0",
102+
"unplugin": "^2.3.2",
103103
"unplugin-utils": "^0.2.4"
104104
},
105105
"devDependencies": {
106-
"@antfu/eslint-config": "^4.3.0",
107-
"@antfu/utils": "^9.1.0",
108-
"@babel/parser": "^7.26.9",
109-
"@babel/types": "^7.26.9",
110-
"@nuxt/kit": "^3.15.4",
111-
"@nuxt/schema": "^3.15.4",
106+
"@antfu/eslint-config": "^4.12.0",
107+
"@antfu/utils": "^9.2.0",
108+
"@babel/parser": "^7.27.0",
109+
"@babel/types": "^7.27.0",
110+
"@nuxt/kit": "^3.16.2",
111+
"@nuxt/schema": "^3.16.2",
112112
"@types/debug": "^4.1.12",
113113
"@types/minimatch": "^5.1.2",
114-
"@types/node": "^22.13.5",
115-
"bumpp": "^10.0.3",
114+
"@types/node": "^22.14.1",
115+
"bumpp": "^10.1.0",
116116
"compare-versions": "^6.1.1",
117-
"element-plus": "^2.9.5",
118-
"eslint": "^9.21.0",
117+
"element-plus": "^2.9.7",
118+
"eslint": "^9.24.0",
119119
"eslint-plugin-format": "^1.0.1",
120120
"esno": "^4.8.0",
121121
"estree-walker": "^3.0.3",
122122
"minimatch": "^10.0.1",
123123
"pathe": "^2.0.3",
124-
"rollup": "^4.34.8",
124+
"rollup": "^4.40.0",
125125
"tsup": "^8.4.0",
126-
"typescript": "^5.7.3",
127-
"vite": "^6.2.0",
128-
"vitest": "^3.0.7",
126+
"typescript": "^5.8.3",
127+
"vite": "^6.2.6",
128+
"vitest": "^3.1.1",
129129
"vue": "3.2.45",
130-
"vue-tsc": "^2.2.4"
130+
"vue-tsc": "^2.2.8"
131131
}
132132
}

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy