docs(auto-import-resolver): update README and folder name (#12241)

* docs(auto-import-resolver): update README and folder name

* chore: update lock

* docs: fix path
This commit is contained in:
neverland 2023-09-03 09:28:13 +08:00 committed by GitHub
parent d1538c3489
commit 80f600af93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 38 additions and 84 deletions

View File

@ -1,24 +1,16 @@
# Vant Auto Import Resolver
@vant/auto-import-resolver For Vant on-demand introduction, parser based on `unplugin-vue-components`
[English](./README.md) | 简体中文
🇨🇳 <a href="./README.zh-CN.md">查看中文版介绍</a>
---
`@vant/auto-import-resolver` is a resolver for [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) that enables on-demand importing of Vant components.
### Features
- Supports `Vite`, `Webpack`, `Rspack`, `Vue CLI`, `Rollup`, `esbuild` and more, powered by <a href="https://github.com/antfu/unplugin-vue-components">unplugin-vue-components</a>
- Supports `Vite`, `Webpack`, `Rspack`, `Vue CLI`, `Rollup`, `esbuild`, and more.
- Automatically imports the corresponding CSS styles for the components.
- Supports SSR (Server-Side Rendering).
- Support css style `VantResolver()` default
- Support less style `VantResolver({ importStyle: false | 'less' })`
> Tip: Vant 4.0 the less file has been removed from the above npm package
- Support ssr `VantResolver({ ssr: true })`
### Install Manually
### Installation
```shell
# via npm
@ -34,8 +26,9 @@ pnpm add @vant/auto-import-resolver unplugin-vue-components -D
bun add @vant/auto-import-resolver unplugin-vue-components -D
```
<details>
<summary>Vite</summary><br>
## Usage
### Vite
```ts
// vite.config.ts
@ -51,10 +44,7 @@ export default defineConfig({
});
```
<br></details>
<details>
<summary>Rollup</summary><br>
### Rollup
```ts
// rollup.config.js
@ -70,10 +60,7 @@ export default {
};
```
<br></details>
<details>
<summary>Webpack</summary><br>
### Webpack
```ts
// webpack.config.js
@ -89,10 +76,7 @@ module.exports = {
};
```
<br></details>
<details>
<summary>Vue CLI</summary><br>
### Vue CLI
```ts
// vue.config.js
@ -110,10 +94,7 @@ module.exports = {
};
```
<br></details>
<details>
<summary>esbuild</summary><br>
### esbuild
```ts
// esbuild.config.js
@ -129,5 +110,3 @@ build({
],
});
```
<br></details>

View File

@ -1,18 +1,14 @@
# Vant Auto Import Resolver
@vant/auto-import-resolver 用于 Vant 按需引入,基于 unplugin-vue-components 的解析器
English | [简体中文](./README.zh-CN.md)
`@vant/auto-import-resolver` 是 [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) 的一个解析器,用于实现 Vant 按需引入。
### 特性
- 支持 `Vite`, `Webpack`, `Rspack`, `Vue CLI`, `Rollup`, `esbuild` 等, 基于 <a href="https://github.com/antfu/unplugin-vue-components">unplugin-vue-components</a>
- 支持自动引入 css 样式 `VantResolver()` 默认
- 支持自动引入 less 样式 `VantResolver({ importStyle: false | 'less' })`
> 提示Vant 4.0 以上 npm 包内移除了 less 文件
- 支持 ssr `VantResolver({ ssr: true })`
- 支持 `Vite`, `Webpack`, `Rspack`, `Vue CLI`, `Rollup`, `esbuild`
- 支持自动引入组件对应的 CSS 样式
- 支持 SSR服务端渲染
### 安装
@ -30,8 +26,9 @@ pnpm add @vant/auto-import-resolver unplugin-vue-components -D
bun add @vant/auto-import-resolver unplugin-vue-components -D
```
<details>
<summary>Vite</summary><br>
## 使用
### Vite
```ts
// vite.config.ts
@ -47,10 +44,7 @@ export default defineConfig({
});
```
<br></details>
<details>
<summary>Rollup</summary><br>
### Rollup
```ts
// rollup.config.js
@ -66,10 +60,7 @@ export default {
};
```
<br></details>
<details>
<summary>Webpack</summary><br>
### Webpack
```ts
// webpack.config.js
@ -85,10 +76,7 @@ module.exports = {
};
```
<br></details>
<details>
<summary>Vue CLI</summary><br>
### Vue CLI
```ts
// vue.config.js
@ -106,10 +94,7 @@ module.exports = {
};
```
<br></details>
<details>
<summary>esbuild</summary><br>
### esbuild
```ts
// esbuild.config.js
@ -125,5 +110,3 @@ build({
],
});
```
<br></details>

View File

@ -32,7 +32,7 @@
"repository": {
"type": "git",
"url": "https://github.com/vant-ui/vant.git",
"directory": "packages/auto-import-resolver"
"directory": "packages/vant-auto-import-resolver"
},
"bugs": "https://github.com/vant-ui/vant/issues",
"author": "chenjiahan",

View File

@ -108,7 +108,7 @@ app.use(Button);
If you are using `vite`, `webpack` or `vue-cli`, you can use [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components), this plugin can help you to auto importing components.
Vant officially wrote an automatic import style parser [@vant/auto-import-resolver](https://github.com/youzan/vant/tree/main/packages/auto-import-resolver) based on `unplugin-vue-components`, both of which are used together.
Vant officially wrote an automatic import style parser [@vant/auto-import-resolver](https://github.com/youzan/vant/tree/main/packages/vant-auto-import-resolver) based on `unplugin-vue-components`, both of which are used together.
Compared with conventional usage, this method can introduce the CSS style of components on demand, thus reducing part of the code volume, but it will become more cumbersome to use. If the business's volume requirements for CSS are not particularly extreme, we recommend a simpler general usage.

View File

@ -129,7 +129,7 @@ Vant 支持多种组件注册方式,除了在 app 上全局注册组件,你
在基于 `vite``webpack``vue-cli` 的项目中使用 Vant 时,可以使用 [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) 插件,它可以自动引入组件。
Vant 官方基于 `unplugin-vue-components` 提供了自动导入样式的解析器 [@vant/auto-import-resolver](https://github.com/youzan/vant/tree/main/packages/auto-import-resolver),两者可以配合使用。
Vant 官方基于 `unplugin-vue-components` 提供了自动导入样式的解析器 [@vant/auto-import-resolver](https://github.com/youzan/vant/tree/main/packages/vant-auto-import-resolver),两者可以配合使用。
相比于常规用法,这种方式可以按需引入组件的 CSS 样式,从而减少一部分代码体积,但使用起来会变得繁琐一些。如果业务对 CSS 的体积要求不是特别极致,我们推荐使用更简便的常规用法。

26
pnpm-lock.yaml generated
View File

@ -27,15 +27,6 @@ importers:
specifier: ^3.0.0
version: 3.0.1
packages/auto-import-resolver:
devDependencies:
rimraf:
specifier: ^5.0.0
version: 5.0.1
typescript:
specifier: ^5.0.4
version: 5.1.6
packages/create-vant-cli-app:
dependencies:
consola:
@ -143,6 +134,15 @@ importers:
specifier: ^5.0.4
version: 5.1.6
packages/vant-auto-import-resolver:
devDependencies:
rimraf:
specifier: ^5.0.0
version: 5.0.1
typescript:
specifier: ^5.0.4
version: 5.1.6
packages/vant-cli:
dependencies:
'@babel/core':
@ -1146,14 +1146,6 @@ packages:
eslint-visitor-keys: 3.4.3
dev: false
/@vant/use@1.6.0(vue@3.3.4):
resolution: {integrity: sha512-PHHxeAASgiOpSmMjceweIrv2AxDZIkWXyaczksMoWvKV2YAYEhoizRuk/xFnKF+emUIi46TsQ+rvlm/t2BBCfA==}
peerDependencies:
vue: ^3.0.0
dependencies:
vue: 3.3.4
dev: false
/@vitejs/plugin-vue-jsx@3.0.1(vite@4.4.9)(vue@3.3.4):
resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==}
engines: {node: ^14.18.0 || >=16.0.0}