Merge branch 'dev' into next

This commit is contained in:
chenjiahan 2022-07-10 21:23:47 +08:00
commit a0bd47dd84
25 changed files with 59 additions and 294 deletions

View File

@ -20,6 +20,6 @@ jobs:
with: with:
tag_name: ${{ github.ref }} tag_name: ${{ github.ref }}
body: | body: |
更新内容参见 [CHANGELOG](https://youzan.github.io/vant/#/zh-CN/changelog)。 更新内容参见 [CHANGELOG](https://vant-ui.github.io/vant/#/zh-CN/changelog)。
Please refer to [CHANGELOG](https://youzan.github.io/vant/#/en-US/changelog) for details. Please refer to [CHANGELOG](https://vant-ui.github.io/vant/#/en-US/changelog) for details.

View File

@ -18,7 +18,7 @@
<p align="center"> <p align="center">
🔥 <a href="https://vant-contrib.gitee.io/vant">文档网站(国内)</a> 🔥 <a href="https://vant-contrib.gitee.io/vant">文档网站(国内)</a>
&nbsp; &nbsp;
🌈 <a href="https://youzan.github.io/vant">文档网站GitHub</a> 🌈 <a href="https://vant-ui.github.io/vant">文档网站GitHub</a>
&nbsp; &nbsp;
🇨🇳 <a href="./README.zh-CN.md">中文版介绍</a> 🇨🇳 <a href="./README.zh-CN.md">中文版介绍</a>
</p> </p>
@ -74,7 +74,7 @@ const app = createApp();
app.use(Button); app.use(Button);
``` ```
See more in [Quickstart](https://youzan.github.io/vant#/en-US/quickstart). See more in [Quickstart](https://vant-ui.github.io/vant#/en-US/quickstart).
## Browser Support ## Browser Support
@ -106,8 +106,8 @@ Vant 3/4 supports modern browsers and Chrome >= 51、iOS >= 10.0 (same as Vue 3)
## Links ## Links
- [Documentation](https://youzan.github.io/vant) - [Documentation](https://vant-ui.github.io/vant)
- [Changelog](https://youzan.github.io/vant#/en-US/changelog) - [Changelog](https://vant-ui.github.io/vant#/en-US/changelog)
- [Gitter](https://gitter.im/vant-contrib/discuss?utm_source=share-link&utm_medium=link&utm_campaign=share-link) - [Gitter](https://gitter.im/vant-contrib/discuss?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
## Preview ## Preview

View File

@ -18,7 +18,7 @@
<p align="center"> <p align="center">
🔥 <a href="https://vant-contrib.gitee.io/vant">文档网站(国内)</a> 🔥 <a href="https://vant-contrib.gitee.io/vant">文档网站(国内)</a>
&nbsp; &nbsp;
🌈 <a href="https://youzan.github.io/vant">文档网站GitHub</a> 🌈 <a href="https://vant-ui.github.io/vant">文档网站GitHub</a>
</p> </p>
--- ---

View File

@ -15,7 +15,7 @@
"build": "vant-cli build", "build": "vant-cli build",
"release": "vant-cli release", "release": "vant-cli release",
"test:coverage": "open test/coverage/index.html", "test:coverage": "open test/coverage/index.html",
"build-site": "vant-cli build-site && gh-pages -d site-dist" "build-site": "vant-cli build-site && npx gh-pages -d site-dist"
}, },
"author": "", "author": "",
"husky": { "husky": {

View File

@ -17,7 +17,7 @@
"build": "vant-cli build", "build": "vant-cli build",
"build:site": "vant-cli build-site", "build:site": "vant-cli build-site",
"release": "vant-cli release --tag next", "release": "vant-cli release --tag next",
"release:site": "pnpm build:site && gh-pages -d site-dist", "release:site": "pnpm build:site && npx gh-pages -d site-dist",
"test:watch": "vant-cli test --watch", "test:watch": "vant-cli test --watch",
"test:coverage": "open test/coverage/index.html" "test:coverage": "open test/coverage/index.html"
}, },

View File

@ -325,7 +325,7 @@ module.exports = {
versions: [ versions: [
{ {
label: 'v1', label: 'v1',
link: 'https://youzan.github.io/vant/v1/', link: 'https://vant-ui.github.io/vant/v1/',
}, },
], ],
}, },
@ -380,12 +380,19 @@ Customize iframe URL.
Customize HTML meta tag, key means name, value means content. Customize HTML meta tag, key means name, value means content.
### site.headHtml
- Type: `string`
- Default: `undefined`
Insert a custom HTML content in the `<head>` tag.
### site.enableVConsole ### site.enableVConsole
- Type: `boolean` - Type: `boolean`
- Default: `false` - Default: `false`
Should use [vConsole](https://github.com/Tencent/vConsole) to debug when dev. For mobile. Whether to enable [vConsole](https://github.com/Tencent/vConsole) debugging in dev, usually used for mobile debugging.
## PostCSS ## PostCSS

View File

@ -327,7 +327,7 @@ module.exports = {
versions: [ versions: [
{ {
label: 'v1', label: 'v1',
link: 'https://youzan.github.io/vant/v1/', link: 'https://vant-ui.github.io/vant/v1/',
}, },
], ],
}, },
@ -337,7 +337,7 @@ module.exports = {
### site.baiduAnalytics ### site.baiduAnalytics
- Type: `object` - Type: `object`
- Default: `undefied` - Default: `undefined`
文档网站的百度统计配置,添加这项配置后,会自动在构建文档网站时加载百度统计的脚本。 文档网站的百度统计配置,添加这项配置后,会自动在构建文档网站时加载百度统计的脚本。
@ -384,6 +384,13 @@ module.exports = {
配置 HTML 中的 meta 标签,对象的 key 为 namevalue 为 content。 配置 HTML 中的 meta 标签,对象的 key 为 namevalue 为 content。
### site.headHtml
- Type: `string`
- Default: `undefined`
`<head>` 标签中插入一段自定义的 HTML 内容。
### site.enableVConsole ### site.enableVConsole
- Type: `boolean` - Type: `boolean`

View File

@ -69,7 +69,6 @@
"execa": "^5.1.1", "execa": "^5.1.1",
"fast-glob": "^3.2.7", "fast-glob": "^3.2.7",
"fs-extra": "^10.0.0", "fs-extra": "^10.0.0",
"gh-pages": "^3.2.3",
"hash-sum": "^2.0.0", "hash-sum": "^2.0.0",
"highlight.js": "^11.3.1", "highlight.js": "^11.3.1",
"husky": "^8.0.1", "husky": "^8.0.1",

View File

@ -1,5 +1,4 @@
@import './vars.less'; @import './vars.less';
@import './font.less';
body { body {
min-width: 1100px; min-width: 1100px;

View File

@ -1,163 +0,0 @@
/* cyrillic-ext */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFWJ0bf8pkAp6a.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFUZ0bf8pkAp6a.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFWZ0bf8pkAp6a.woff2)
format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFVp0bf8pkAp6a.woff2)
format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFWp0bf8pkAp6a.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFW50bf8pkAp6a.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-weight: 400;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans Regular'), local('OpenSans-Regular'),
url(https://b.yzcdn.cn/vant/mem8YaGs126MiZpBA-UFVZ0bf8pkAg.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOX-hpKKSTj5PW.woff2)
format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOVuhpKKSTj5PW.woff2)
format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOXuhpKKSTj5PW.woff2)
format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOUehpKKSTj5PW.woff2)
format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOXehpKKSTj5PW.woff2)
format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOXOhpKKSTj5PW.woff2)
format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-weight: 600;
font-family: 'Open Sans';
font-style: normal;
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
url(https://b.yzcdn.cn/vant/mem5YaGs126MiZpBA-UNirkOUuhpKKSTjw.woff2)
format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
U+FEFF, U+FFFD;
}

View File

@ -15,6 +15,9 @@
<meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" /> <meta http-equiv="Expires" content="0" />
<% if (headHtml) { %>
<%- headHtml %>
<% } %>
<% if (baiduAnalytics) { %> <% if (baiduAnalytics) { %>
<script> <script>
var _hmt = _hmt || []; var _hmt = _hmt || [];

View File

@ -15,6 +15,9 @@
<meta http-equiv="Cache-Control" content="no-cache" /> <meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" /> <meta http-equiv="Expires" content="0" />
<% if (headHtml) { %>
<%- headHtml %>
<% } %>
<% if (enableVConsole) { %> <% if (enableVConsole) { %>
<script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script> <script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
<script> <script>

View File

@ -137,6 +137,7 @@ export function getViteConfigForSiteDev(): InlineConfig {
const vantConfig = getVantConfig(); const vantConfig = getVantConfig();
const siteConfig = getSiteConfig(vantConfig); const siteConfig = getSiteConfig(vantConfig);
const title = getTitle(siteConfig); const title = getTitle(siteConfig);
const headHtml = vantConfig.site?.headHtml;
const baiduAnalytics = vantConfig.site?.baiduAnalytics; const baiduAnalytics = vantConfig.site?.baiduAnalytics;
const enableVConsole = isDev() && vantConfig.site?.enableVConsole; const enableVConsole = isDev() && vantConfig.site?.enableVConsole;
@ -178,6 +179,7 @@ export function getViteConfigForSiteDev(): InlineConfig {
// `description` is used by the HTML ejs template, // `description` is used by the HTML ejs template,
// so it needs to be written explicitly here to avoid error: description is not defined // so it needs to be written explicitly here to avoid error: description is not defined
description: siteConfig.description, description: siteConfig.description,
headHtml,
baiduAnalytics, baiduAnalytics,
enableVConsole, enableVConsole,
meta: getHTMLMeta(vantConfig), meta: getHTMLMeta(vantConfig),

View File

@ -15,5 +15,5 @@ pnpm add @vant/icons
## Document ## Document
- [Usage in Vue](https://youzan.github.io/vant/#/zh-CN/icon) - [Usage in Vue](https://vant-ui.github.io/vant/#/zh-CN/icon)
- [Usage in Weapp](https://youzan.github.io/vant-weapp/#/icon) - [Usage in Weapp](https://vant-ui.github.io/vant-weapp/#/icon)

View File

@ -29,6 +29,7 @@
"fs-extra": "^10.0.0" "fs-extra": "^10.0.0"
}, },
"devDependencies": { "devDependencies": {
"@types/fs-extra": "^9.0.13" "@types/fs-extra": "^9.0.13",
"typescript": "^4.7.4"
} }
} }

View File

@ -4,8 +4,8 @@
The current document is the changelog of Vant 4, other versions: The current document is the changelog of Vant 4, other versions:
- [Vant 2 Changelog](https://youzan.github.io/vant/v2/#/en-US/changelog) - [Vant 2 Changelog](https://vant-ui.github.io/vant/v2/#/en-US/changelog)
- [Vant 3 Changelog](https://youzan.github.io/vant/v3/#/en-US/changelog) - [Vant 3 Changelog](https://vant-ui.github.io/vant/v3/#/en-US/changelog)
### Intro ### Intro

View File

@ -4,8 +4,8 @@
当前文档为 Vant 4 的更新日志,其他版本请参考: 当前文档为 Vant 4 的更新日志,其他版本请参考:
- [Vant 2 更新日志](https://youzan.github.io/vant/v2/#/zh-CN/changelog) - [Vant 2 更新日志](https://vant-ui.github.io/vant/v2/#/zh-CN/changelog)
- [Vant 3 更新日志](https://youzan.github.io/vant/v3/#/zh-CN/changelog) - [Vant 3 更新日志](https://vant-ui.github.io/vant/v3/#/zh-CN/changelog)
### 介绍 ### 介绍

View File

@ -23,7 +23,7 @@
"build": "vant-cli build", "build": "vant-cli build",
"build:site": "vant-cli build-site", "build:site": "vant-cli build-site",
"release": "cp ../../README.md ./ && vant-cli release && rm ./README.md", "release": "cp ../../README.md ./ && vant-cli release && rm ./README.md",
"release:site": "pnpm build:site && gh-pages -d site-dist --add", "release:site": "pnpm build:site && npx gh-pages -d site-dist --add",
"test:watch": "vant-cli test --watch", "test:watch": "vant-cli test --watch",
"test:coverage": "open test/coverage/index.html" "test:coverage": "open test/coverage/index.html"
}, },

View File

@ -214,6 +214,8 @@ export default defineComponent({
return !currentDate.value; return !currentDate.value;
}); });
const getSelectedDate = () => currentDate.value;
// calculate the position of the elements // calculate the position of the elements
// and find the elements that needs to be rendered // and find the elements that needs to be rendered
const onScroll = () => { const onScroll = () => {
@ -552,6 +554,7 @@ export default defineComponent({
useExpose<CalendarExpose>({ useExpose<CalendarExpose>({
reset, reset,
scrollToDate, scrollToDate,
getSelectedDate,
}); });
onMountedOrActivated(init); onMountedOrActivated(init);

View File

@ -348,6 +348,7 @@ Use [ref](https://v3.vuejs.org/guide/component-template-refs.html) to get Calend
| --- | --- | --- | --- | | --- | --- | --- | --- |
| reset | Reset selected date, will reset to default date when no params passed | _date?: Date \| Date[]_ | - | | reset | Reset selected date, will reset to default date when no params passed | _date?: Date \| Date[]_ | - |
| scrollToDate | Scroll to date | _date: Date_ | - | | scrollToDate | Scroll to date | _date: Date_ | - |
| getSelectedDate | get selected date | - | _Date \| Date[] \| null_ |
### Types ### Types

View File

@ -354,6 +354,7 @@ export default {
| --- | --- | --- | --- | | --- | --- | --- | --- |
| reset | 将选中的日期重置到指定日期,未传参时会重置到默认日期 | _date?: Date \| Date[]_ | - | | reset | 将选中的日期重置到指定日期,未传参时会重置到默认日期 | _date?: Date \| Date[]_ | - |
| scrollToDate | 滚动到某个日期 | _date: Date_ | - | | scrollToDate | 滚动到某个日期 | _date: Date_ | - |
| getSelectedDate | 获取选中的日期 | - | _Date \| Date[] \| null_ |
### 类型定义 ### 类型定义

View File

@ -29,6 +29,7 @@ export type CalendarDayItem = {
export type CalendarExpose = { export type CalendarExpose = {
reset: (date?: Date | Date[]) => void; reset: (date?: Date | Date[]) => void;
scrollToDate: (targetDate: Date) => void; scrollToDate: (targetDate: Date) => void;
getSelectedDate: () => Date | Date[] | null;
}; };
export type CalendarInstance = ComponentPublicInstance< export type CalendarInstance = ComponentPublicInstance<

View File

@ -230,7 +230,7 @@ export default defineComponent({
const imageFiles = props.modelValue.filter(isImageFile); const imageFiles = props.modelValue.filter(isImageFile);
const images = imageFiles const images = imageFiles
.map((item) => { .map((item) => {
if (item.file && !item.url) { if (item.file && !item.url && item.status !== 'failed') {
item.url = URL.createObjectURL(item.file); item.url = URL.createObjectURL(item.file);
urls.push(item.url); urls.push(item.url);
} }

View File

@ -34,6 +34,12 @@ export default {
htmlMeta: { htmlMeta: {
'docsearch:version': 'v4', 'docsearch:version': 'v4',
}, },
headHtml: `<script>
if (location.host === 'youzan.github.io') {
location.href = location.href.replace('youzan.github.io', 'vant-ui.github.io');
}
</script>
`,
locales: { locales: {
'zh-CN': { 'zh-CN': {
title: 'Vant 4', title: 'Vant 4',

109
pnpm-lock.yaml generated
View File

@ -113,7 +113,6 @@ importers:
execa: ^5.1.1 execa: ^5.1.1
fast-glob: ^3.2.7 fast-glob: ^3.2.7
fs-extra: ^10.0.0 fs-extra: ^10.0.0
gh-pages: ^3.2.3
hash-sum: ^2.0.0 hash-sum: ^2.0.0
highlight.js: ^11.3.1 highlight.js: ^11.3.1
husky: ^8.0.1 husky: ^8.0.1
@ -162,7 +161,6 @@ importers:
execa: 5.1.1 execa: 5.1.1
fast-glob: 3.2.11 fast-glob: 3.2.11
fs-extra: 10.1.0 fs-extra: 10.1.0
gh-pages: 3.2.3
hash-sum: 2.0.0 hash-sum: 2.0.0
highlight.js: 11.5.1 highlight.js: 11.5.1
husky: 8.0.1 husky: 8.0.1
@ -245,11 +243,13 @@ importers:
'@types/fs-extra': ^9.0.13 '@types/fs-extra': ^9.0.13
fast-glob: ^3.2.2 fast-glob: ^3.2.2
fs-extra: ^10.0.0 fs-extra: ^10.0.0
typescript: ^4.7.4
dependencies: dependencies:
fast-glob: 3.2.11 fast-glob: 3.2.11
fs-extra: 10.1.0 fs-extra: 10.1.0
devDependencies: devDependencies:
'@types/fs-extra': 9.0.13 '@types/fs-extra': 9.0.13
typescript: 4.7.4
packages/vant-popperjs: packages/vant-popperjs:
specifiers: specifiers:
@ -1893,22 +1893,10 @@ packages:
is-string: 1.0.7 is-string: 1.0.7
dev: false dev: false
/array-union/1.0.2:
resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==}
engines: {node: '>=0.10.0'}
dependencies:
array-uniq: 1.0.3
dev: false
/array-union/2.1.0: /array-union/2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'} engines: {node: '>=8'}
/array-uniq/1.0.3:
resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==}
engines: {node: '>=0.10.0'}
dev: false
/array.prototype.flat/1.3.0: /array.prototype.flat/1.3.0:
resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==} resolution: {integrity: sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
@ -1948,12 +1936,6 @@ packages:
dependencies: dependencies:
retry: 0.13.1 retry: 0.13.1
/async/2.6.4:
resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==}
dependencies:
lodash: 4.17.21
dev: false
/async/3.2.4: /async/3.2.4:
resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==}
dev: false dev: false
@ -2374,10 +2356,6 @@ packages:
engines: {node: ^12.20.0 || >=14} engines: {node: ^12.20.0 || >=14}
dev: false dev: false
/commondir/1.0.1:
resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==}
dev: false
/compare-func/2.0.0: /compare-func/2.0.0:
resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==}
dependencies: dependencies:
@ -2874,10 +2852,6 @@ packages:
/electron-to-chromium/1.4.177: /electron-to-chromium/1.4.177:
resolution: {integrity: sha512-FYPir3NSBEGexSZUEeht81oVhHfLFl6mhUKSkjHN/iB/TwEIt/WHQrqVGfTLN5gQxwJCQkIJBe05eOXjI7omgg==} resolution: {integrity: sha512-FYPir3NSBEGexSZUEeht81oVhHfLFl6mhUKSkjHN/iB/TwEIt/WHQrqVGfTLN5gQxwJCQkIJBe05eOXjI7omgg==}
/email-addresses/3.1.0:
resolution: {integrity: sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==}
dev: false
/emittery/0.8.1: /emittery/0.8.1:
resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -3573,20 +3547,6 @@ packages:
minimatch: 5.1.0 minimatch: 5.1.0
dev: false dev: false
/filename-reserved-regex/2.0.0:
resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==}
engines: {node: '>=4'}
dev: false
/filenamify/4.3.0:
resolution: {integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==}
engines: {node: '>=8'}
dependencies:
filename-reserved-regex: 2.0.0
strip-outer: 1.0.1
trim-repeated: 1.0.0
dev: false
/fill-range/7.0.1: /fill-range/7.0.1:
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
engines: {node: '>=8'} engines: {node: '>=8'}
@ -3597,15 +3557,6 @@ packages:
resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
/find-cache-dir/3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
engines: {node: '>=8'}
dependencies:
commondir: 1.0.1
make-dir: 3.1.0
pkg-dir: 4.2.0
dev: false
/find-up/2.1.0: /find-up/2.1.0:
resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==}
engines: {node: '>=4'} engines: {node: '>=4'}
@ -3773,20 +3724,6 @@ packages:
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
/gh-pages/3.2.3:
resolution: {integrity: sha512-jA1PbapQ1jqzacECfjUaO9gV8uBgU6XNMV0oXLtfCX3haGLe5Atq8BxlrADhbD6/UdG9j6tZLWAkAybndOXTJg==}
engines: {node: '>=10'}
hasBin: true
dependencies:
async: 2.6.4
commander: 2.20.3
email-addresses: 3.1.0
filenamify: 4.3.0
find-cache-dir: 3.3.2
fs-extra: 8.1.0
globby: 6.1.0
dev: false
/git-raw-commits/2.0.11: /git-raw-commits/2.0.11:
resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==}
engines: {node: '>=10'} engines: {node: '>=10'}
@ -3906,17 +3843,6 @@ packages:
merge2: 1.4.1 merge2: 1.4.1
slash: 4.0.0 slash: 4.0.0
/globby/6.1.0:
resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==}
engines: {node: '>=0.10.0'}
dependencies:
array-union: 1.0.2
glob: 7.2.3
object-assign: 4.1.1
pify: 2.3.0
pinkie-promise: 2.0.1
dev: false
/globjoin/0.1.4: /globjoin/0.1.4:
resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
@ -5690,11 +5616,6 @@ packages:
resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==} resolution: {integrity: sha512-JYOWTeFoS0Z93587vRJgASD5Ut11fYl5NyihP3KrYBvMe1FRRs6RN7m20SA/16GM4P6hTnZjT+UmDOt38UeXNg==}
dev: false dev: false
/object-assign/4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
dev: false
/object-inspect/1.12.2: /object-inspect/1.12.2:
resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==}
@ -6021,18 +5942,6 @@ packages:
dev: false dev: false
optional: true optional: true
/pinkie-promise/2.0.1:
resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
engines: {node: '>=0.10.0'}
dependencies:
pinkie: 2.0.4
dev: false
/pinkie/2.0.4:
resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
engines: {node: '>=0.10.0'}
dev: false
/pirates/4.0.5: /pirates/4.0.5:
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
engines: {node: '>= 6'} engines: {node: '>= 6'}
@ -6891,13 +6800,6 @@ packages:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'} engines: {node: '>=8'}
/strip-outer/1.0.1:
resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==}
engines: {node: '>=0.10.0'}
dependencies:
escape-string-regexp: 1.0.5
dev: false
/style-search/0.1.0: /style-search/0.1.0:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
@ -7155,13 +7057,6 @@ packages:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'} engines: {node: '>=8'}
/trim-repeated/1.0.0:
resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==}
engines: {node: '>=0.10.0'}
dependencies:
escape-string-regexp: 1.0.5
dev: false
/trough/1.0.5: /trough/1.0.5:
resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==}