feat(auto-import-resolver): add auto-import-resolver package (#12227)

This commit is contained in:
wChenonly 2023-09-02 16:48:16 +08:00 committed by GitHub
parent 804f1fa839
commit 2c17abf7f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 467 additions and 33 deletions

View File

@ -0,0 +1,10 @@
MIT License
Copyright (c) Youzan
Copyright (c) Chen Jiahan and other contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,133 @@
# Vant Auto Import Resolver
@vant/auto-import-resolver For Vant on-demand introduction, parser based on `unplugin-vue-components`
🇨🇳 <a href="./README.zh-CN.md">查看中文版介绍</a>
---
### 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>
- 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
```shell
# via npm
npm i @vant/auto-import-resolver unplugin-vue-components -D
# via yarn
yarn add @vant/auto-import-resolver unplugin-vue-components -D
# via pnpm
pnpm add @vant/auto-import-resolver unplugin-vue-components -D
# via Bun
bun add @vant/auto-import-resolver unplugin-vue-components -D
```
<details>
<summary>Vite</summary><br>
```ts
// vite.config.ts
import Components from 'unplugin-vue-components/vite';
import { VantResolver } from '@vant/auto-import-resolver';
export default defineConfig({
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
});
```
<br></details>
<details>
<summary>Rollup</summary><br>
```ts
// rollup.config.js
import Components from 'unplugin-vue-components/rollup';
import { VantResolver } from '@vant/auto-import-resolver';
export default {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
};
```
<br></details>
<details>
<summary>Webpack</summary><br>
```ts
// webpack.config.js
import Components from 'unplugin-vue-components/webpack';
import { VantResolver } from '@vant/auto-import-resolver';
module.exports = {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
};
```
<br></details>
<details>
<summary>Vue CLI</summary><br>
```ts
// vue.config.js
import Components from 'unplugin-vue-components/webpack';
import { VantResolver } from '@vant/auto-import-resolver';
module.exports = {
configureWebpack: {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
},
};
```
<br></details>
<details>
<summary>esbuild</summary><br>
```ts
// esbuild.config.js
import { build } from 'esbuild';
import Components from 'unplugin-vue-components/esbuild';
import { VantResolver } from '@vant/auto-import-resolver';
build({
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
});
```
<br></details>

View File

@ -0,0 +1,129 @@
# Vant Auto Import Resolver
@vant/auto-import-resolver 用于 Vant 按需引入,基于 unplugin-vue-components 的解析器
### 特性
- 支持 `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 })`
### 安装
```shell
# via npm
npm i @vant/auto-import-resolver unplugin-vue-components -D
# via yarn
yarn add @vant/auto-import-resolver unplugin-vue-components -D
# via pnpm
pnpm add @vant/auto-import-resolver unplugin-vue-components -D
# via Bun
bun add @vant/auto-import-resolver unplugin-vue-components -D
```
<details>
<summary>Vite</summary><br>
```ts
// vite.config.ts
import Components from 'unplugin-vue-components/vite';
import { VantResolver } from '@vant/auto-import-resolver';
export default defineConfig({
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
});
```
<br></details>
<details>
<summary>Rollup</summary><br>
```ts
// rollup.config.js
import Components from 'unplugin-vue-components/rollup';
import { VantResolver } from '@vant/auto-import-resolver';
export default {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
};
```
<br></details>
<details>
<summary>Webpack</summary><br>
```ts
// webpack.config.js
import Components from 'unplugin-vue-components/webpack';
import { VantResolver } from '@vant/auto-import-resolver';
module.exports = {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
};
```
<br></details>
<details>
<summary>Vue CLI</summary><br>
```ts
// vue.config.js
import Components from 'unplugin-vue-components/webpack';
import { VantResolver } from '@vant/auto-import-resolver';
module.exports = {
configureWebpack: {
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
},
};
```
<br></details>
<details>
<summary>esbuild</summary><br>
```ts
// esbuild.config.js
import { build } from 'esbuild';
import Components from 'unplugin-vue-components/esbuild';
import { VantResolver } from '@vant/auto-import-resolver';
build({
plugins: [
Components({
resolvers: [VantResolver()],
}),
],
});
```
<br></details>

View File

@ -0,0 +1 @@
require('../vant-use/build');

View File

@ -0,0 +1,44 @@
{
"name": "@vant/auto-import-resolver",
"version": "1.0.0",
"description": "Vant auto import resolver base unplugin-vue-components",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.mjs",
"typings": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rimraf ./dist",
"dev": "node ./build.js -w",
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
"build:bundle": "node ./build.js",
"build": "pnpm clean && pnpm build:bundle && pnpm build:types",
"release": "vant-cli release",
"prepare": "pnpm build"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/vant-ui/vant.git",
"directory": "packages/auto-import-resolver"
},
"bugs": "https://github.com/vant-ui/vant/issues",
"author": "chenjiahan",
"license": "MIT",
"devDependencies": {
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
}
}

View File

@ -0,0 +1,58 @@
export interface VantResolverOptions {
/**
* import style css or less along with components
*
* @default true
*/
importStyle?: boolean | 'css' | 'less';
/**
* use lib
*
* @default false
*/
ssr?: boolean;
}
/**
* Button->button; ButtonGroup->button-group
*/
function kebabCase(key: string) {
const result = key.replace(/([A-Z])/g, ' $1').trim();
return result.split(' ').join('-').toLowerCase();
}
function getModuleType(ssr: boolean): string {
return ssr ? 'lib' : 'es';
}
function getSideEffects(dirName: string, options: VantResolverOptions) {
const { importStyle = true, ssr = false } = options;
if (!importStyle) return;
const moduleType = getModuleType(ssr);
if (importStyle === 'less') return `vant/${moduleType}/${dirName}/style/less`;
return `vant/${moduleType}/${dirName}/style/index`;
}
export function VantResolver(options: VantResolverOptions = {}) {
const { ssr = false } = options;
const moduleType = getModuleType(ssr);
return {
type: 'component',
resolve: (name: string) => {
if (name.startsWith('Van')) {
const partialName = name.slice(3);
return {
name: partialName,
from: `vant/${moduleType}`,
sideEffects: getSideEffects(kebabCase(partialName), options),
};
}
},
};
}

View File

@ -0,0 +1,9 @@
{
"extends": "../../tsconfig",
"compilerOptions": {
"outDir": "./dist",
"declaration": true
},
"include": ["src/**/*"],
"exclude": ["**/node_modules", "**/.*/"]
}

View File

@ -0,0 +1,5 @@
export default {
build: {
packageManager: 'pnpm',
},
};

View File

@ -76,28 +76,42 @@ For enterprise developers, we recommend:
### CLI ### CLI
We recommend to use [Vue CLI](https://cli.vuejs.org/) to create a new project. We recommend to use [Vite](https://vitejs.dev/config/) to create a new project.
```bash ```bash
# Install Vue CLI # npm 6.x
npm install -g @vue/cli npm create vite@latest my-vue-app --template vue
# Create a project # npm 7+, extra double-dash is needed:
vue create hello-world npm create vite@latest my-vue-app -- --template vue
# Open GUI # yarn
vue ui yarn create vite my-vue-app --template vue
# pnpm
pnpm create vite my-vue-app --template vue
``` ```
![](https://fastly.jsdelivr.net/npm/@vant/assets/vue-cli-demo-201809030812.png) then
In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to the dependencies. ```bash
cd my-vue-app
# with npm
npm install vant
# with yarn
yarn add vant
# with pnpm
pnpm add vant
```
## Usage ## Usage
### Basic Usage ### Basic Usage
The basic usage of Vant components; The basic usage of Vant components:
```js ```js
import { createApp } from 'vue'; import { createApp } from 'vue';
@ -116,22 +130,26 @@ app.use(Button);
### Import on demand ### Import on demand
If you are using vite, webpack or vue-cli, you can use [unplugin-vue-components](https://github.com/antfu/unplugin-vue-components), this plugin can help you to auto importing components and reduce CSS file size. If you are using `vite`, `webpack` or `vue-cli`, you can use [unplugin-vue-components](https://github.com/antfu/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.
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.
#### 1. Install Plugin #### 1. Install Plugin
```bash ```bash
# with npm # with npm
npm i unplugin-vue-components -D npm i @vant/auto-import-resolver unplugin-vue-components -D
# with yarn # with yarn
yarn add unplugin-vue-components -D yarn add @vant/auto-import-resolver unplugin-vue-components -D
# with pnpm # with pnpm
pnpm add unplugin-vue-components -D pnpm add @vant/auto-import-resolver unplugin-vue-components -D
# with Bun # with Bun
bun add unplugin-vue-components -D bun add @vant/auto-import-resolver unplugin-vue-components -D
``` ```
#### 2. Configure Plugin #### 2. Configure Plugin
@ -141,7 +159,7 @@ For `vite` based projectconfigure the plugin in the `vite.config.js` file:
```js ```js
import vue from '@vitejs/plugin-vue'; import vue from '@vitejs/plugin-vue';
import Components from 'unplugin-vue-components/vite'; import Components from 'unplugin-vue-components/vite';
import { VantResolver } from 'unplugin-vue-components/resolvers'; import { VantResolver } from '@vant/auto-import-resolver';
export default { export default {
plugins: [ plugins: [
@ -156,7 +174,7 @@ export default {
For `vue-cli` based projectconfigure the plugin in the `vue.config.js` file: For `vue-cli` based projectconfigure the plugin in the `vue.config.js` file:
```js ```js
const { VantResolver } = require('unplugin-vue-components/resolvers'); const { VantResolver } = require('@vant/auto-import-resolver');
const ComponentsPlugin = require('unplugin-vue-components/webpack'); const ComponentsPlugin = require('unplugin-vue-components/webpack');
module.exports = { module.exports = {
@ -173,7 +191,7 @@ module.exports = {
For `webpack` based projectconfigure the plugin in the `webpack.config.js` file: For `webpack` based projectconfigure the plugin in the `webpack.config.js` file:
```js ```js
const { VantResolver } = require('unplugin-vue-components/resolvers'); const { VantResolver } = require('@vant/auto-import-resolver');
const ComponentsPlugin = require('unplugin-vue-components/webpack'); const ComponentsPlugin = require('unplugin-vue-components/webpack');
module.exports = { module.exports = {
@ -187,7 +205,7 @@ module.exports = {
#### 3. Using Components #### 3. Using Components
Then you can using components from Vant in the template, the `unplugin-vue-components` will automatically import the corresponding Vant components. Then you can using components from Vant in the template, the `unplugin-vue-components` will automatically import the corresponding Vant components,`@vant/auto-import-resolver` The corresponding component style will be automatically introduced.
```html ```html
<template> <template>
@ -197,7 +215,7 @@ Then you can using components from Vant in the template, the `unplugin-vue-compo
#### 4. Style of Function Components #### 4. Style of Function Components
Some components of Vant are provided as function, including `Toast`, `Dialog`, `Notify` and `ImagePreview`. When using function components, `unplugin-vue-components` can not auto import the component style, so we need to import style manually. Some components of Vant are provided as function, including `Toast`, `Dialog`, `Notify` and `ImagePreview`. When using function components, `unplugin-vue-components` cannot parse the automatic registration component, resulting in `@vant/auto-import-resolver` unable to parse the style, so the style needs to be introduced manually.
```js ```js
// Toast // Toast
@ -222,7 +240,8 @@ import 'vant/es/image-preview/style';
#### Tips #### Tips
- "Full Import" and "On-demand Import" should not be used at the same time, otherwise it will lead to problems such as code duplication and style overrides. - "Full Import" and "On-demand Import" should not be used at the same time, otherwise it will lead to problems such as code duplication and style overrides.
- unplugin-vue-components is not officially maintained by Vant. If you encounter issues when using this plugin, please feedback to [antfu/unplugin-vue-components](https://github.com/antfu/unplugin-vue-components) repository. - During use, if the component cannot be imported, because `unplugin-vue-components` is not a plug-in officially maintained by `Vant`, it is recommended to give feedback under the [antfu/unplugin-vue-components](https://github.com/antfu/antfu/unplugin-vue-components) repository.
- If it is a similar problem that the style does not take effect, feedback under the `Vant` repository
## With Frameworks ## With Frameworks

View File

@ -118,7 +118,9 @@ Vant 支持多种组件注册方式,除了在 app 上全局注册组件,你
### 方法二. 按需引入组件样式 ### 方法二. 按需引入组件样式
在基于 `vite``webpack``vue-cli` 的项目中使用 Vant 时,可以使用 [unplugin-vue-components](https://github.com/antfu/unplugin-vue-components) 插件,它可以自动引入组件,并按需引入组件的样式。 在基于 `vite``webpack``vue-cli` 的项目中使用 Vant 时,可以使用 [unplugin-vue-components](https://github.com/antfu/unplugin-vue-components) 插件,它可以自动引入组件。
Vant 官方基于 `unplugin-vue-components` 提供了自动导入样式的解析器 [@vant/auto-import-resolver](https://github.com/youzan/vant/tree/main/packages/auto-import-resolver),两者可以配合使用。
相比于常规用法,这种方式可以按需引入组件的 CSS 样式,从而减少一部分代码体积,但使用起来会变得繁琐一些。如果业务对 CSS 的体积要求不是特别极致,我们推荐使用更简便的常规用法。 相比于常规用法,这种方式可以按需引入组件的 CSS 样式,从而减少一部分代码体积,但使用起来会变得繁琐一些。如果业务对 CSS 的体积要求不是特别极致,我们推荐使用更简便的常规用法。
@ -126,16 +128,16 @@ Vant 支持多种组件注册方式,除了在 app 上全局注册组件,你
```bash ```bash
# 通过 npm 安装 # 通过 npm 安装
npm i unplugin-vue-components -D npm i @vant/auto-import-resolver unplugin-vue-components -D
# 通过 yarn 安装 # 通过 yarn 安装
yarn add unplugin-vue-components -D yarn add @vant/auto-import-resolver unplugin-vue-components -D
# 通过 pnpm 安装 # 通过 pnpm 安装
pnpm add unplugin-vue-components -D pnpm add @vant/auto-import-resolver unplugin-vue-components -D
# 通过 bun 安装 # 通过 bun 安装
bun add unplugin-vue-components -D bun add @vant/auto-import-resolver unplugin-vue-components -D
``` ```
#### 2. 配置插件 #### 2. 配置插件
@ -145,7 +147,7 @@ bun add unplugin-vue-components -D
```js ```js
import vue from '@vitejs/plugin-vue'; import vue from '@vitejs/plugin-vue';
import Components from 'unplugin-vue-components/vite'; import Components from 'unplugin-vue-components/vite';
import { VantResolver } from 'unplugin-vue-components/resolvers'; import { VantResolver } from '@vant/auto-import-resolver';
export default { export default {
plugins: [ plugins: [
@ -160,7 +162,7 @@ export default {
如果是基于 `vue-cli` 的项目,在 `vue.config.js` 文件中配置插件: 如果是基于 `vue-cli` 的项目,在 `vue.config.js` 文件中配置插件:
```js ```js
const { VantResolver } = require('unplugin-vue-components/resolvers'); const { VantResolver } = require('@vant/auto-import-resolver');
const ComponentsPlugin = require('unplugin-vue-components/webpack'); const ComponentsPlugin = require('unplugin-vue-components/webpack');
module.exports = { module.exports = {
@ -177,7 +179,7 @@ module.exports = {
如果是基于 `webpack` 的项目,在 `webpack.config.js` 文件中配置插件: 如果是基于 `webpack` 的项目,在 `webpack.config.js` 文件中配置插件:
```js ```js
const { VantResolver } = require('unplugin-vue-components/resolvers'); const { VantResolver } = require('@vant/auto-import-resolver');
const ComponentsPlugin = require('unplugin-vue-components/webpack'); const ComponentsPlugin = require('unplugin-vue-components/webpack');
module.exports = { module.exports = {
@ -191,7 +193,7 @@ module.exports = {
#### 3. 使用组件 #### 3. 使用组件
完成以上两步,就可以直接在模板中使用 Vant 组件了,`unplugin-vue-components` 会解析模板并自动注册对应的组件。 完成以上两步,就可以直接在模板中使用 Vant 组件了,`unplugin-vue-components` 会解析模板并自动注册对应的组件, `@vant/auto-import-resolver` 会自动引入对应的组件样式
```html ```html
<template> <template>
@ -201,7 +203,7 @@ module.exports = {
#### 4. 引入函数组件的样式 #### 4. 引入函数组件的样式
Vant 中有个别组件是以函数的形式提供的,包括 `Toast``Dialog``Notify``ImagePreview` 组件。在使用函数组件时,`unplugin-vue-components` 无法自动引入对应的样式,因此需要手动引入样式。 Vant 中有个别组件是以函数的形式提供的,包括 `Toast``Dialog``Notify``ImagePreview` 组件。在使用函数组件时,`unplugin-vue-components` 无法解析自动注册组件,导致 `@vant/auto-import-resolver` 无法解析样式,因此需要手动引入样式。
```js ```js
// Toast // Toast
@ -226,7 +228,8 @@ import 'vant/es/image-preview/style';
#### 使用提示 #### 使用提示
- 请避免同时使用「全量引入」和「按需引入」这两种引入方式,否则会导致代码重复、样式错乱等问题。 - 请避免同时使用「全量引入」和「按需引入」这两种引入方式,否则会导致代码重复、样式错乱等问题。
- unplugin-vue-components 并不是 Vant 官方维护的插件,如果在使用过程中遇到问题,建议优先到 [antfu/unplugin-vue-components](https://github.com/antfu/unplugin-vue-components) 仓库下反馈。 - 在使用过程中,如果你遇到组件不能导入的问题,因为 unplugin-vue-components 并不是 Vant 官方维护的插件,所以建议到 [antfu/unplugin-vue-components](https://github.com/antfu/unplugin-vue-components) 仓库下反馈。
- 如果是样式不生效的相关问题,你可以在 Vant 仓库下反馈。
## 在框架中使用 ## 在框架中使用
@ -297,7 +300,7 @@ module.exports = {
移除 `babel-plugin-import` 有以下收益: 移除 `babel-plugin-import` 有以下收益:
- 不再强依赖 babel项目可以使用 esbuild、swc 等更高效的编译工具,大幅度提升编译效率。 - 不再强依赖 babel项目可以使用 esbuild、swc 等更高效的编译工具,大幅度提升编译效率。
- 不再受到 `babel-plugin-import` 的 import 写法限制,可以从 vant 中导入除了组件以外的其他内容,比如 Vant 4 中新增的 `showToast` 等方法 - 不再受到 `babel-plugin-import` 的 import 写法限制,可以从 vant 中导入除了组件以外的其他内容,比如 Vant 4 中新增的 `showToast` 等方法
```ts ```ts
import { showToast, showDialog } from 'vant'; import { showToast, showDialog } from 'vant';

23
pnpm-lock.yaml generated
View File

@ -27,6 +27,15 @@ importers:
specifier: ^3.0.0 specifier: ^3.0.0
version: 3.0.1 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: packages/create-vant-cli-app:
dependencies: dependencies:
consola: consola:
@ -1137,6 +1146,14 @@ packages:
eslint-visitor-keys: 3.4.3 eslint-visitor-keys: 3.4.3
dev: false 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): /@vitejs/plugin-vue-jsx@3.0.1(vite@4.4.9)(vue@3.3.4):
resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==} resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==}
engines: {node: ^14.18.0 || >=16.0.0} engines: {node: ^14.18.0 || >=16.0.0}
@ -1635,6 +1652,7 @@ packages:
/debug@3.2.7: /debug@3.2.7:
resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
requiresBuild: true
peerDependencies: peerDependencies:
supports-color: '*' supports-color: '*'
peerDependenciesMeta: peerDependenciesMeta:
@ -2634,6 +2652,7 @@ packages:
/ms@2.1.3: /ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
requiresBuild: true
dev: false dev: false
optional: true optional: true
@ -2798,6 +2817,7 @@ packages:
/pify@4.0.1: /pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'} engines: {node: '>=6'}
requiresBuild: true
dev: false dev: false
optional: true optional: true
@ -2870,6 +2890,7 @@ packages:
/prr@1.0.1: /prr@1.0.1:
resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
requiresBuild: true
dev: false dev: false
optional: true optional: true
@ -2957,6 +2978,7 @@ packages:
/sax@1.2.4: /sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
requiresBuild: true
dev: false dev: false
optional: true optional: true
@ -2970,6 +2992,7 @@ packages:
/semver@5.7.2: /semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
hasBin: true hasBin: true
requiresBuild: true
dev: false dev: false
optional: true optional: true