mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
docs: 优化文档
This commit is contained in:
parent
47ef9dc189
commit
d5049a8e2a
@ -1,36 +1,50 @@
|
||||
import { defineConfig } from 'vitepress';
|
||||
import { withPwa } from '@vite-pwa/vitepress'
|
||||
import { fileURLToPath, URL } from 'node:url';
|
||||
import { withPwa } from '@vite-pwa/vitepress';
|
||||
|
||||
import { navbar, sidebar } from './configs';
|
||||
|
||||
const BASE_URL = process.env.BASE ? `/${process.env.BASE}/` : '/';
|
||||
export default withPwa(defineConfig({
|
||||
base: BASE_URL,
|
||||
title: 'Fes.js',
|
||||
description: '一个好用的前端应用解决方案',
|
||||
export default withPwa(
|
||||
defineConfig({
|
||||
base: BASE_URL,
|
||||
title: 'Fes.js',
|
||||
description: '一个好用的前端应用解决方案',
|
||||
|
||||
head: [
|
||||
['link', { rel: 'icon', href: `/logo.png` }],
|
||||
],
|
||||
|
||||
themeConfig: {
|
||||
logo: '/logo.png',
|
||||
nav: navbar.zh,
|
||||
sidebar: sidebar.zh,
|
||||
|
||||
outline: {
|
||||
label: '本页目录'
|
||||
vite: {
|
||||
resolve: {
|
||||
alias: [
|
||||
{
|
||||
find: /^.*\/VPHero\.vue$/,
|
||||
replacement: fileURLToPath(new URL('./theme/components/VPHero.vue', import.meta.url)),
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
|
||||
search: {
|
||||
provider: 'local'
|
||||
head: [['link', { rel: 'icon', href: `/logo.png` }]],
|
||||
|
||||
themeConfig: {
|
||||
socialLinks: [{ icon: 'github', link: 'https://github.com/WeBankFinTech/fes.js' }],
|
||||
|
||||
logo: '/logo.png',
|
||||
nav: navbar.zh,
|
||||
sidebar: sidebar.zh,
|
||||
|
||||
outline: {
|
||||
label: '本页目录',
|
||||
},
|
||||
|
||||
search: {
|
||||
provider: 'local',
|
||||
},
|
||||
|
||||
footer: {
|
||||
message: 'Released under the MIT License.',
|
||||
copyright: 'Copyright © 2020-present Webank',
|
||||
},
|
||||
},
|
||||
|
||||
footer: {
|
||||
message: 'Released under the MIT License.',
|
||||
copyright: 'Copyright © 2020-present Webank'
|
||||
},
|
||||
},
|
||||
|
||||
pwa: {}
|
||||
}));
|
||||
pwa: {},
|
||||
}),
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="VPFeatures">
|
||||
<div class="container">
|
||||
<div class="vp-doc fes-home container">
|
||||
<slot></slot>
|
||||
</div>
|
||||
</div>
|
||||
@ -30,3 +30,9 @@
|
||||
max-width: 1152px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
.fes-home img {
|
||||
height: 320px;
|
||||
}
|
||||
</style>
|
150
docs/.vitepress/theme/components/VPButton.vue
Normal file
150
docs/.vitepress/theme/components/VPButton.vue
Normal file
@ -0,0 +1,150 @@
|
||||
<script setup lang="ts">
|
||||
import { computed } from 'vue'
|
||||
import { withBase, useData } from 'vitepress'
|
||||
|
||||
const PATHNAME_PROTOCOL_RE = /^pathname:\/\//
|
||||
const EXTERNAL_URL_RE = /^[a-z]+:/i
|
||||
|
||||
function normalizeLink(url: string): string {
|
||||
if (EXTERNAL_URL_RE.test(url)) {
|
||||
return url.replace(PATHNAME_PROTOCOL_RE, '')
|
||||
}
|
||||
|
||||
const { site } = useData()
|
||||
const { pathname, search, hash } = new URL(url, 'http://example.com')
|
||||
|
||||
const normalizedPath =
|
||||
pathname.endsWith('/') || pathname.endsWith('.html')
|
||||
? url
|
||||
: url.replace(
|
||||
/(?:(^\.+)\/)?.*$/,
|
||||
`$1${pathname.replace(
|
||||
/(\.md)?$/,
|
||||
site.value.cleanUrls ? '' : '.html'
|
||||
)}${search}${hash}`
|
||||
)
|
||||
|
||||
return withBase(normalizedPath)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const props = defineProps<{
|
||||
tag?: string
|
||||
size?: 'medium' | 'big'
|
||||
theme?: 'brand' | 'alt' | 'sponsor'
|
||||
text: string
|
||||
href?: string
|
||||
}>()
|
||||
|
||||
const classes = computed(() => [
|
||||
props.size ?? 'medium',
|
||||
props.theme ?? 'brand'
|
||||
])
|
||||
|
||||
const isExternal = computed(() => props.href && EXTERNAL_URL_RE.test(props.href))
|
||||
|
||||
const component = computed(() => {
|
||||
if (props.tag) {
|
||||
return props.tag
|
||||
}
|
||||
|
||||
return props.href ? 'a' : 'button'
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<component
|
||||
:is="component"
|
||||
class="VPButton"
|
||||
:class="classes"
|
||||
:href="href ? normalizeLink(href) : undefined"
|
||||
:target="isExternal ? '_blank' : undefined"
|
||||
:rel="isExternal ? 'noreferrer' : undefined"
|
||||
>
|
||||
{{ text }}
|
||||
</component>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.VPButton {
|
||||
display: inline-block;
|
||||
border: 1px solid transparent;
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
white-space: nowrap;
|
||||
transition: color 0.25s, border-color 0.25s, background-color 0.25s;
|
||||
}
|
||||
|
||||
.VPButton:active {
|
||||
transition: color 0.1s, border-color 0.1s, background-color 0.1s;
|
||||
}
|
||||
|
||||
.VPButton.medium {
|
||||
border-radius:4px;
|
||||
padding: 0 20px;
|
||||
line-height: 38px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.VPButton.big {
|
||||
border-radius: 24px;
|
||||
padding: 0 24px;
|
||||
line-height: 46px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.VPButton.brand {
|
||||
border-color: var(--vp-button-brand-border);
|
||||
color: var(--vp-button-brand-text);
|
||||
background-color: var(--vp-button-brand-bg);
|
||||
}
|
||||
|
||||
.VPButton.brand:hover {
|
||||
border-color: var(--vp-button-brand-hover-border);
|
||||
color: var(--vp-button-brand-hover-text);
|
||||
background-color: var(--vp-button-brand-hover-bg);
|
||||
}
|
||||
|
||||
.VPButton.brand:active {
|
||||
border-color: var(--vp-button-brand-active-border);
|
||||
color: var(--vp-button-brand-active-text);
|
||||
background-color: var(--vp-button-brand-active-bg);
|
||||
}
|
||||
|
||||
.VPButton.alt {
|
||||
border-color: var(--vp-button-alt-border);
|
||||
color: var(--vp-button-alt-text);
|
||||
background-color: var(--vp-button-alt-bg);
|
||||
}
|
||||
|
||||
.VPButton.alt:hover {
|
||||
border-color: var(--vp-button-alt-hover-border);
|
||||
color: var(--vp-button-alt-hover-text);
|
||||
background-color: var(--vp-button-alt-hover-bg);
|
||||
}
|
||||
|
||||
.VPButton.alt:active {
|
||||
border-color: var(--vp-button-alt-active-border);
|
||||
color: var(--vp-button-alt-active-text);
|
||||
background-color: var(--vp-button-alt-active-bg);
|
||||
}
|
||||
|
||||
.VPButton.sponsor {
|
||||
border-color: var(--vp-button-sponsor-border);
|
||||
color: var(--vp-button-sponsor-text);
|
||||
background-color: var(--vp-button-sponsor-bg);
|
||||
}
|
||||
|
||||
.VPButton.sponsor:hover {
|
||||
border-color: var(--vp-button-sponsor-hover-border);
|
||||
color: var(--vp-button-sponsor-hover-text);
|
||||
background-color: var(--vp-button-sponsor-hover-bg);
|
||||
}
|
||||
|
||||
.VPButton.sponsor:active {
|
||||
border-color: var(--vp-button-sponsor-active-border);
|
||||
color: var(--vp-button-sponsor-active-text);
|
||||
background-color: var(--vp-button-sponsor-active-bg);
|
||||
}
|
||||
</style>
|
256
docs/.vitepress/theme/components/VPHero.vue
Normal file
256
docs/.vitepress/theme/components/VPHero.vue
Normal file
@ -0,0 +1,256 @@
|
||||
<script setup lang="ts">
|
||||
import { type Ref, inject } from 'vue'
|
||||
import type { DefaultTheme } from 'vitepress/theme'
|
||||
import VPButton from './VPButton.vue'
|
||||
import VPImage from './VPImage.vue'
|
||||
|
||||
export interface HeroAction {
|
||||
theme?: 'brand' | 'alt'
|
||||
text: string
|
||||
link: string
|
||||
}
|
||||
|
||||
defineProps<{
|
||||
name?: string
|
||||
text?: string
|
||||
tagline?: string
|
||||
image?: DefaultTheme.ThemeableImage
|
||||
actions?: HeroAction[]
|
||||
}>()
|
||||
|
||||
const heroImageSlotExists = inject('hero-image-slot-exists') as Ref<boolean>
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="VPHero">
|
||||
<div class="container">
|
||||
<div v-if="image || heroImageSlotExists" class="image">
|
||||
<div class="image-container">
|
||||
<div class="image-bg" />
|
||||
<slot name="home-hero-image">
|
||||
<VPImage v-if="image" class="image-src" :image="image" />
|
||||
</slot>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main">
|
||||
<slot name="home-hero-info">
|
||||
<h1 v-if="name" class="name">
|
||||
<span class="clip">{{ name }}</span>
|
||||
</h1>
|
||||
<p v-if="text" class="text">{{ text }}</p>
|
||||
<p v-if="tagline" class="tagline">{{ tagline }}</p>
|
||||
</slot>
|
||||
|
||||
<div v-if="actions" class="actions">
|
||||
<div v-for="action in actions" :key="action.link" class="action">
|
||||
<VPButton
|
||||
tag="a"
|
||||
size="medium"
|
||||
:theme="action.theme"
|
||||
:text="action.text"
|
||||
:href="action.link"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.VPHero {
|
||||
margin-top: calc((var(--vp-nav-height) + var(--vp-layout-top-height, 0px)) * -1);
|
||||
padding: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 42px) 24px 48px;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.VPHero {
|
||||
padding: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 42px) 48px 64px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
.VPHero {
|
||||
padding: calc(var(--vp-nav-height) + var(--vp-layout-top-height, 0px) + 42px) 64px 64px;
|
||||
}
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin: 0 auto;
|
||||
max-width: 1152px;
|
||||
}
|
||||
|
||||
.main {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
z-index: 10;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.name,
|
||||
.text {
|
||||
max-width: 392px;
|
||||
letter-spacing: -0.4px;
|
||||
line-height: 40px;
|
||||
font-size: 32px;
|
||||
font-weight: 700;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
|
||||
.name {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.clip {
|
||||
background: #fff;
|
||||
-webkit-background-clip: text;
|
||||
background-clip: text;
|
||||
-webkit-text-fill-color: #fff;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.name,
|
||||
.text {
|
||||
max-width: 576px;
|
||||
line-height: 56px;
|
||||
font-size: 48px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
.name,
|
||||
.text {
|
||||
line-height: 64px;
|
||||
font-size: 56px;
|
||||
}
|
||||
}
|
||||
|
||||
.tagline {
|
||||
padding-top: 8px;
|
||||
max-width: 392px;
|
||||
line-height: 28px;
|
||||
font-size: 18px;
|
||||
font-weight: 500;
|
||||
white-space: pre-wrap;
|
||||
color: var(--vp-c-text-2);
|
||||
}
|
||||
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.tagline {
|
||||
padding-top: 12px;
|
||||
max-width: 576px;
|
||||
line-height: 32px;
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
.tagline {
|
||||
line-height: 36px;
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
.actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
margin: -6px;
|
||||
padding-top: 24px;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.actions {
|
||||
padding-top: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.action {
|
||||
flex-shrink: 0;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
|
||||
.image-container {
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
height: 320px;
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.image-container {
|
||||
width: 392px;
|
||||
height: 392px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
.image-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
|
||||
.image-bg {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
/*rtl:ignore*/
|
||||
left: 50%;
|
||||
border-radius: 50%;
|
||||
width: 192px;
|
||||
height: 192px;
|
||||
background-image: var(--vp-home-hero-image-background-image);
|
||||
filter: var(--vp-home-hero-image-filter);
|
||||
/*rtl:ignore*/
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
.image-bg {
|
||||
width: 256px;
|
||||
height: 256px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
.image-bg {
|
||||
width: 320px;
|
||||
height: 320px;
|
||||
}
|
||||
}
|
||||
|
||||
:deep(.image-src) {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
/*rtl:ignore*/
|
||||
left: 50%;
|
||||
max-width: 192px;
|
||||
max-height: 192px;
|
||||
/*rtl:ignore*/
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@media (min-width: 640px) {
|
||||
:deep(.image-src) {
|
||||
max-width: 256px;
|
||||
max-height: 256px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 960px) {
|
||||
:deep(.image-src) {
|
||||
max-width: 320px;
|
||||
max-height: 320px;
|
||||
}
|
||||
}
|
||||
</style>
|
50
docs/.vitepress/theme/components/VPImage.vue
Normal file
50
docs/.vitepress/theme/components/VPImage.vue
Normal file
@ -0,0 +1,50 @@
|
||||
<script setup lang="ts">
|
||||
import type { DefaultTheme } from 'vitepress/theme'
|
||||
import { withBase } from 'vitepress'
|
||||
|
||||
defineProps<{
|
||||
image: DefaultTheme.ThemeableImage
|
||||
alt?: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
export default {
|
||||
inheritAttrs: false
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<template v-if="image">
|
||||
<img
|
||||
v-if="typeof image === 'string' || 'src' in image"
|
||||
class="VPImage"
|
||||
v-bind="typeof image === 'string' ? $attrs : { ...image, ...$attrs }"
|
||||
:src="withBase(typeof image === 'string' ? image : image.src)"
|
||||
:alt="alt ?? (typeof image === 'string' ? '' : image.alt || '')"
|
||||
/>
|
||||
<template v-else>
|
||||
<VPImage
|
||||
class="dark"
|
||||
:image="image.dark"
|
||||
:alt="image.alt"
|
||||
v-bind="$attrs"
|
||||
/>
|
||||
<VPImage
|
||||
class="light"
|
||||
:image="image.light"
|
||||
:alt="image.alt"
|
||||
v-bind="$attrs"
|
||||
/>
|
||||
</template>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
html:not(.dark) .VPImage.dark {
|
||||
display: none;
|
||||
}
|
||||
.dark .VPImage.light {
|
||||
display: none;
|
||||
}
|
||||
</style>
|
@ -45,25 +45,19 @@ cd workspace
|
||||
|
||||
##### 步骤 2 在工作空间创建项目
|
||||
|
||||
<CodeGroup>
|
||||
<CodeGroupItem title="PNPM" active>
|
||||
::: code-group
|
||||
|
||||
```bash
|
||||
```bash [pnpm]
|
||||
# 创建模板
|
||||
pnpm create @fesjs/fes-app myapp
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
|
||||
<CodeGroupItem title="NPM">
|
||||
|
||||
```bash
|
||||
```bash [npm]
|
||||
# 创建模板
|
||||
npx @fesjs/create-fes-app myapp
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
</CodeGroup>
|
||||
:::
|
||||
|
||||
如果项目文件夹 `workspace/myapp` 已经存在,会提示目录已存在:
|
||||
|
||||
@ -81,36 +75,29 @@ npx @fesjs/create-fes-app myapp
|
||||
|
||||
##### 步骤 3 安装依赖
|
||||
|
||||
<CodeGroup>
|
||||
<CodeGroupItem title="PNPM" active>
|
||||
::: code-group
|
||||
|
||||
```bash
|
||||
```bash [pnpm]
|
||||
# 进入项目目录
|
||||
cd myapp
|
||||
# 安装依赖
|
||||
pnpm i
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
|
||||
<CodeGroupItem title="NPM">
|
||||
|
||||
```bash
|
||||
```bash [npm]
|
||||
# 进入项目目录
|
||||
cd myapp
|
||||
# 安装依赖
|
||||
npm i
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
</CodeGroup>
|
||||
:::
|
||||
|
||||
## 启动项目
|
||||
|
||||
<CodeGroup>
|
||||
<CodeGroupItem title="PNPM" active>
|
||||
::: code-group
|
||||
|
||||
```bash
|
||||
```bash [pnpm]
|
||||
# 开发调试
|
||||
pnpm dev
|
||||
|
||||
@ -124,11 +111,7 @@ Starting the development server http://localhost:8000 ...
|
||||
DONE Compiled successfully in 15917ms 11:17:08 AM
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
|
||||
<CodeGroupItem title="NPM">
|
||||
|
||||
```bash
|
||||
```bash [npm]
|
||||
# 开发调试
|
||||
npm run dev
|
||||
|
||||
@ -141,8 +124,7 @@ Starting the development server http://localhost:8000 ...
|
||||
DONE Compiled successfully in 3662ms 11:17:46 AM
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
</CodeGroup>
|
||||
:::
|
||||
|
||||
Fes.js 会在 [http://localhost:8000](http://localhost:8000) 启动一个热重载的开发服务器。当你修改你的 .vue 文件时,浏览器中的内容也会自动更新。
|
||||
|
||||
@ -152,10 +134,9 @@ Fes.js 会在 [http://localhost:8000](http://localhost:8000) 启动一个热重
|
||||
|
||||
### 构建
|
||||
|
||||
<CodeGroup>
|
||||
<CodeGroupItem title="PNPM" active>
|
||||
::: code-group
|
||||
|
||||
```bash
|
||||
```bash [pnpm]
|
||||
# 构建
|
||||
pnpm build
|
||||
|
||||
@ -168,11 +149,7 @@ $ fes build
|
||||
✨ Done in 48.87s.
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
|
||||
<CodeGroupItem title="NPM">
|
||||
|
||||
```bash
|
||||
```bash [npm]
|
||||
# 构建
|
||||
npm run build
|
||||
|
||||
@ -182,8 +159,7 @@ npm run build
|
||||
Compiled successfully in 45.37s
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
</CodeGroup>
|
||||
:::
|
||||
|
||||
构建产物默认生成到 ./dist 下,然后通过 tree 命令查看。
|
||||
|
||||
|
@ -20,10 +20,10 @@ Options:
|
||||
```
|
||||
|
||||
可以在本机安装后使用:
|
||||
<CodeGroup>
|
||||
<CodeGroupItem title="PNPM" active>
|
||||
|
||||
```bash
|
||||
::: code-group
|
||||
|
||||
```bash [pnpm]
|
||||
# 全局安装
|
||||
pnpm global add @fesjs/create-fes-app
|
||||
|
||||
@ -31,11 +31,7 @@ pnpm global add @fesjs/create-fes-app
|
||||
create-fes-app fes-app
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
|
||||
<CodeGroupItem title="NPM">
|
||||
|
||||
```bash
|
||||
```bash [npm]
|
||||
# 全局安装
|
||||
npm i -g @fesjs/create-fes-app
|
||||
|
||||
@ -43,15 +39,13 @@ npm i -g @fesjs/create-fes-app
|
||||
create-fes-app fes-app
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
</CodeGroup>
|
||||
:::
|
||||
|
||||
推荐使用 `pnpm create` 和 `npx` 方式创建模板,一直使用最新的模板:
|
||||
|
||||
<CodeGroup>
|
||||
<CodeGroupItem title="PNPM" active>
|
||||
::: code-group
|
||||
|
||||
```bash
|
||||
```bash [pnpm]
|
||||
# 创建模板
|
||||
pnpm create @fesjs/fes-app myapp
|
||||
|
||||
@ -62,11 +56,7 @@ pnpm i
|
||||
pnpm dev
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
|
||||
<CodeGroupItem title="NPM">
|
||||
|
||||
```bash
|
||||
```bash [npm]
|
||||
# 创建模板
|
||||
npx @fesjs/create-fes-app myapp
|
||||
|
||||
@ -77,8 +67,7 @@ npm install
|
||||
npm run dev
|
||||
```
|
||||
|
||||
</CodeGroupItem>
|
||||
</CodeGroup>
|
||||
:::
|
||||
|
||||
## fes
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
{
|
||||
"extends": "../tsconfig.base.json",
|
||||
"include": [".vuepress/**/*"]
|
||||
"include": [".vitepress/**/*"]
|
||||
}
|
||||
|
@ -50,6 +50,7 @@
|
||||
"lint-staged": "^13.2.0",
|
||||
"vite-plugin-pwa": "^0.14.7",
|
||||
"vitepress": "1.0.0-alpha.73",
|
||||
"vue": "^3.2.47",
|
||||
"yargs-parser": "^21.1.1"
|
||||
},
|
||||
"lint-staged": {
|
||||
|
@ -33,12 +33,13 @@
|
||||
"@fesjs/fes": "^3.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.21.3",
|
||||
"@babel/preset-env": "^7.15.0",
|
||||
"@vue/babel-plugin-jsx": "^1.0.6",
|
||||
"babel-jest": "^27.0.6",
|
||||
"jest": "^27.0.6",
|
||||
"jest-transform-stub": "^2.0.0",
|
||||
"jest-watch-typeahead": "^0.6.1",
|
||||
"jest-watch-typeahead": "^2.2.2",
|
||||
"ts-jest": "^27.0.4",
|
||||
"typescript": "^4.9.0",
|
||||
"vue3-jest": "^27.0.0-alpha.1"
|
||||
|
293
pnpm-lock.yaml
generated
293
pnpm-lock.yaml
generated
@ -62,6 +62,9 @@ importers:
|
||||
vitepress:
|
||||
specifier: 1.0.0-alpha.73
|
||||
version: 1.0.0-alpha.73
|
||||
vue:
|
||||
specifier: ^3.2.47
|
||||
version: 3.2.47
|
||||
yargs-parser:
|
||||
specifier: ^21.1.1
|
||||
version: 21.1.1
|
||||
@ -106,7 +109,7 @@ importers:
|
||||
version: 3.0.0
|
||||
vue-router:
|
||||
specifier: ^4.1.6
|
||||
version: 4.1.6
|
||||
version: 4.1.6(vue@3.2.47)
|
||||
|
||||
packages/fes-builder-vite:
|
||||
dependencies:
|
||||
@ -124,10 +127,10 @@ importers:
|
||||
version: 3.0.1(terser@5.16.8)(vite@4.2.1)
|
||||
'@vitejs/plugin-vue':
|
||||
specifier: ^4.0.0
|
||||
version: 4.0.0(vite@4.2.1)
|
||||
version: 4.0.0(vite@4.2.1)(vue@3.2.47)
|
||||
'@vitejs/plugin-vue-jsx':
|
||||
specifier: ^3.0.0
|
||||
version: 3.0.0(vite@4.2.1)
|
||||
version: 3.0.0(vite@4.2.1)(vue@3.2.47)
|
||||
autoprefixer:
|
||||
specifier: ^10.4.4
|
||||
version: 10.4.14(postcss@8.4.21)
|
||||
@ -253,7 +256,7 @@ importers:
|
||||
version: 5.3.7(webpack@5.76.2)
|
||||
vue-loader:
|
||||
specifier: ^17.0.1
|
||||
version: 17.0.1(webpack@5.76.2)
|
||||
version: 17.0.1(vue@3.2.47)(webpack@5.76.2)
|
||||
webpack:
|
||||
specifier: ^5.76.2
|
||||
version: 5.76.2
|
||||
@ -319,6 +322,9 @@ importers:
|
||||
|
||||
packages/fes-plugin-jest:
|
||||
dependencies:
|
||||
'@babel/core':
|
||||
specifier: ^7.21.3
|
||||
version: 7.21.3
|
||||
'@babel/preset-env':
|
||||
specifier: ^7.15.0
|
||||
version: 7.20.2(@babel/core@7.21.3)
|
||||
@ -327,7 +333,7 @@ importers:
|
||||
version: 1.1.1(@babel/core@7.21.3)
|
||||
babel-jest:
|
||||
specifier: ^27.0.6
|
||||
version: 27.0.6
|
||||
version: 27.0.6(@babel/core@7.21.3)
|
||||
jest:
|
||||
specifier: ^27.0.6
|
||||
version: 27.0.6
|
||||
@ -335,17 +341,17 @@ importers:
|
||||
specifier: ^2.0.0
|
||||
version: 2.0.0
|
||||
jest-watch-typeahead:
|
||||
specifier: ^0.6.1
|
||||
version: 0.6.1(jest@27.0.6)
|
||||
specifier: ^2.2.2
|
||||
version: 2.2.2(jest@27.0.6)
|
||||
ts-jest:
|
||||
specifier: ^27.0.4
|
||||
version: 27.0.4(babel-jest@27.0.6)(jest@27.0.6)(typescript@4.9.3)
|
||||
version: 27.0.4(@babel/core@7.21.3)(babel-jest@27.0.6)(jest@27.0.6)(typescript@4.9.3)
|
||||
typescript:
|
||||
specifier: ^4.9.0
|
||||
version: 4.9.3
|
||||
vue3-jest:
|
||||
specifier: ^27.0.0-alpha.1
|
||||
version: 27.0.0-alpha.1(babel-jest@27.0.6)(jest@27.0.6)(ts-jest@27.0.4)(typescript@4.9.3)
|
||||
version: 27.0.0-alpha.1(@babel/core@7.21.3)(babel-jest@27.0.6)(jest@27.0.6)(ts-jest@27.0.4)(typescript@4.9.3)(vue@3.2.47)
|
||||
|
||||
packages/fes-plugin-layout:
|
||||
dependencies:
|
||||
@ -360,7 +366,7 @@ importers:
|
||||
version: link:../fes-utils
|
||||
vue-i18n:
|
||||
specifier: ^9.0.0
|
||||
version: 9.0.0
|
||||
version: 9.0.0(vue@3.2.47)
|
||||
|
||||
packages/fes-plugin-login: {}
|
||||
|
||||
@ -591,7 +597,7 @@ importers:
|
||||
dependencies:
|
||||
vue-router:
|
||||
specifier: ^4.0.1
|
||||
version: 4.1.6
|
||||
version: 4.1.6(vue@3.2.47)
|
||||
|
||||
packages/fes-template:
|
||||
dependencies:
|
||||
@ -2842,18 +2848,6 @@ packages:
|
||||
engines: {node: '>=8'}
|
||||
dev: false
|
||||
|
||||
/@jest/console@26.6.2:
|
||||
resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
'@types/node': 18.15.13
|
||||
chalk: 4.1.2
|
||||
jest-message-util: 26.6.2
|
||||
jest-util: 26.6.2
|
||||
slash: 3.0.0
|
||||
dev: false
|
||||
|
||||
/@jest/console@27.5.1:
|
||||
resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -2866,6 +2860,18 @@ packages:
|
||||
slash: 3.0.0
|
||||
dev: false
|
||||
|
||||
/@jest/console@29.5.0:
|
||||
resolution: {integrity: sha512-NEpkObxPwyw/XxZVLPmAGKE89IQRp4puc6IQRPru6JKd1M3fW9v1xM1AnzIJE65hbCkzQAdnL8P47e9hzhiYLQ==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
dependencies:
|
||||
'@jest/types': 29.5.0
|
||||
'@types/node': 18.15.13
|
||||
chalk: 4.1.2
|
||||
jest-message-util: 29.5.0
|
||||
jest-util: 29.5.0
|
||||
slash: 3.0.0
|
||||
dev: false
|
||||
|
||||
/@jest/core@27.5.1:
|
||||
resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -2996,16 +3002,6 @@ packages:
|
||||
source-map: 0.6.1
|
||||
dev: false
|
||||
|
||||
/@jest/test-result@26.6.2:
|
||||
resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@jest/console': 26.6.2
|
||||
'@jest/types': 26.6.2
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
collect-v8-coverage: 1.0.1
|
||||
dev: false
|
||||
|
||||
/@jest/test-result@27.5.1:
|
||||
resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -3016,6 +3012,16 @@ packages:
|
||||
collect-v8-coverage: 1.0.1
|
||||
dev: false
|
||||
|
||||
/@jest/test-result@29.5.0:
|
||||
resolution: {integrity: sha512-fGl4rfitnbfLsrfx1uUpDEESS7zM8JdgZgOCQuxQvL1Sn/I6ijeAVQWGfXI9zb1i9Mzo495cIpVZhA0yr60PkQ==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
dependencies:
|
||||
'@jest/console': 29.5.0
|
||||
'@jest/types': 29.5.0
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
collect-v8-coverage: 1.0.1
|
||||
dev: false
|
||||
|
||||
/@jest/test-sequencer@27.5.1:
|
||||
resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -3051,17 +3057,6 @@ packages:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@jest/types@26.6.2:
|
||||
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@types/istanbul-lib-coverage': 2.0.4
|
||||
'@types/istanbul-reports': 3.0.1
|
||||
'@types/node': 18.15.13
|
||||
'@types/yargs': 15.0.15
|
||||
chalk: 4.1.2
|
||||
dev: false
|
||||
|
||||
/@jest/types@27.5.1:
|
||||
resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -3837,12 +3832,6 @@ packages:
|
||||
resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==}
|
||||
dev: false
|
||||
|
||||
/@types/yargs@15.0.15:
|
||||
resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==}
|
||||
dependencies:
|
||||
'@types/yargs-parser': 21.0.0
|
||||
dev: false
|
||||
|
||||
/@types/yargs@16.0.5:
|
||||
resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==}
|
||||
dependencies:
|
||||
@ -3888,7 +3877,7 @@ packages:
|
||||
vite: 4.2.1(less@4.1.3)(terser@5.16.8)
|
||||
dev: false
|
||||
|
||||
/@vitejs/plugin-vue-jsx@3.0.0(vite@4.2.1):
|
||||
/@vitejs/plugin-vue-jsx@3.0.0(vite@4.2.1)(vue@3.2.47):
|
||||
resolution: {integrity: sha512-vurkuzgac5SYuxd2HUZqAFAWGTF10diKBwJNbCvnWijNZfXd+7jMtqjPFbGt7idOJUn584fP1Ar9j/GN2jQ3Ew==}
|
||||
engines: {node: ^14.18.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3899,11 +3888,12 @@ packages:
|
||||
'@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3)
|
||||
'@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.3)
|
||||
vite: 4.2.1(less@4.1.3)(terser@5.16.8)
|
||||
vue: 3.2.47
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
||||
/@vitejs/plugin-vue@4.0.0(vite@4.2.1):
|
||||
/@vitejs/plugin-vue@4.0.0(vite@4.2.1)(vue@3.2.47):
|
||||
resolution: {integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA==}
|
||||
engines: {node: ^14.18.0 || >=16.0.0}
|
||||
peerDependencies:
|
||||
@ -3911,6 +3901,7 @@ packages:
|
||||
vue: ^3.2.25
|
||||
dependencies:
|
||||
vite: 4.2.1(less@4.1.3)(terser@5.16.8)
|
||||
vue: 3.2.47
|
||||
dev: false
|
||||
|
||||
/@vitejs/plugin-vue@4.1.0(vite@4.3.1)(vue@3.2.47):
|
||||
@ -4422,6 +4413,13 @@ packages:
|
||||
dependencies:
|
||||
type-fest: 0.21.3
|
||||
|
||||
/ansi-escapes@6.1.0:
|
||||
resolution: {integrity: sha512-bQyg9bzRntwR/8b89DOEhGwctcwCrbWW/TuqTQnpqpy5Fz3aovcOTj5i8NJV6AHc8OGNdMaqdxAWww8pz2kiKg==}
|
||||
engines: {node: '>=14.16'}
|
||||
dependencies:
|
||||
type-fest: 3.8.0
|
||||
dev: false
|
||||
|
||||
/ansi-html-community@0.0.8:
|
||||
resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==}
|
||||
engines: {'0': node >= 0.8.0}
|
||||
@ -4445,7 +4443,6 @@ packages:
|
||||
/ansi-regex@6.0.1:
|
||||
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
|
||||
engines: {node: '>=12'}
|
||||
dev: true
|
||||
|
||||
/ansi-sequence-parser@1.1.0:
|
||||
resolution: {integrity: sha512-lEm8mt52to2fT8GhciPCGeCXACSz2UwIN4X2e2LJSnZ5uAbn2/dsYdOmUXq0AtWS5cpAupysIneExOgH0Vd2TQ==}
|
||||
@ -4619,12 +4616,13 @@ packages:
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: true
|
||||
|
||||
/babel-jest@27.0.6:
|
||||
/babel-jest@27.0.6(@babel/core@7.21.3):
|
||||
resolution: {integrity: sha512-iTJyYLNc4wRofASmofpOc5NK9QunwMk+TLFgGXsTFS8uEqmd8wdI7sga0FPe2oVH3b5Agt/EAK1QjPEuKL8VfA==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
peerDependencies:
|
||||
'@babel/core': ^7.8.0
|
||||
dependencies:
|
||||
'@babel/core': 7.21.3
|
||||
'@jest/transform': 27.5.1
|
||||
'@jest/types': 27.5.1
|
||||
'@types/babel__core': 7.20.0
|
||||
@ -5020,13 +5018,17 @@ packages:
|
||||
/chalk@5.2.0:
|
||||
resolution: {integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==}
|
||||
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
|
||||
dev: true
|
||||
|
||||
/char-regex@1.0.2:
|
||||
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
|
||||
engines: {node: '>=10'}
|
||||
dev: false
|
||||
|
||||
/char-regex@2.0.1:
|
||||
resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==}
|
||||
engines: {node: '>=12.20'}
|
||||
dev: false
|
||||
|
||||
/chardet@0.7.0:
|
||||
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
|
||||
|
||||
@ -5088,10 +5090,6 @@ packages:
|
||||
engines: {node: '>=6.0'}
|
||||
dev: false
|
||||
|
||||
/ci-info@2.0.0:
|
||||
resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
|
||||
dev: false
|
||||
|
||||
/ci-info@3.8.0:
|
||||
resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
|
||||
engines: {node: '>=8'}
|
||||
@ -6259,6 +6257,11 @@ packages:
|
||||
/electron-to-chromium@1.4.368:
|
||||
resolution: {integrity: sha512-e2aeCAixCj9M7nJxdB/wDjO6mbYX+lJJxSJCXDzlr5YPGYVofuJwGN9nKg2o6wWInjX6XmxRinn3AeJMK81ltw==}
|
||||
|
||||
/emittery@0.13.1:
|
||||
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
|
||||
engines: {node: '>=12'}
|
||||
dev: false
|
||||
|
||||
/emittery@0.8.1:
|
||||
resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==}
|
||||
engines: {node: '>=10'}
|
||||
@ -7981,13 +7984,6 @@ packages:
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: true
|
||||
|
||||
/is-ci@2.0.0:
|
||||
resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
ci-info: 2.0.0
|
||||
dev: false
|
||||
|
||||
/is-core-module@2.12.0:
|
||||
resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==}
|
||||
dependencies:
|
||||
@ -8536,21 +8532,6 @@ packages:
|
||||
pretty-format: 27.5.1
|
||||
dev: false
|
||||
|
||||
/jest-message-util@26.6.2:
|
||||
resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.21.4
|
||||
'@jest/types': 26.6.2
|
||||
'@types/stack-utils': 2.0.1
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.11
|
||||
micromatch: 4.0.5
|
||||
pretty-format: 26.6.2
|
||||
slash: 3.0.0
|
||||
stack-utils: 2.0.6
|
||||
dev: false
|
||||
|
||||
/jest-message-util@27.5.1:
|
||||
resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -8566,6 +8547,21 @@ packages:
|
||||
stack-utils: 2.0.6
|
||||
dev: false
|
||||
|
||||
/jest-message-util@29.5.0:
|
||||
resolution: {integrity: sha512-Kijeg9Dag6CKtIDA7O21zNTACqD5MD/8HfIV8pdD94vFyFuer52SigdC3IQMhab3vACxXMiFk+yMHNdbqtyTGA==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
dependencies:
|
||||
'@babel/code-frame': 7.21.4
|
||||
'@jest/types': 29.5.0
|
||||
'@types/stack-utils': 2.0.1
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.11
|
||||
micromatch: 4.0.5
|
||||
pretty-format: 29.5.0
|
||||
slash: 3.0.0
|
||||
stack-utils: 2.0.6
|
||||
dev: false
|
||||
|
||||
/jest-mock@27.5.1:
|
||||
resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -8586,16 +8582,16 @@ packages:
|
||||
jest-resolve: 27.5.1
|
||||
dev: false
|
||||
|
||||
/jest-regex-util@26.0.0:
|
||||
resolution: {integrity: sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dev: false
|
||||
|
||||
/jest-regex-util@27.5.1:
|
||||
resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
dev: false
|
||||
|
||||
/jest-regex-util@29.4.3:
|
||||
resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
dev: false
|
||||
|
||||
/jest-resolve-dependencies@27.5.1:
|
||||
resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -8727,18 +8723,6 @@ packages:
|
||||
resolution: {integrity: sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==}
|
||||
dev: false
|
||||
|
||||
/jest-util@26.6.2:
|
||||
resolution: {integrity: sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
'@types/node': 18.15.13
|
||||
chalk: 4.1.2
|
||||
graceful-fs: 4.2.11
|
||||
is-ci: 2.0.0
|
||||
micromatch: 4.0.5
|
||||
dev: false
|
||||
|
||||
/jest-util@27.5.1:
|
||||
resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -8775,33 +8759,20 @@ packages:
|
||||
pretty-format: 27.5.1
|
||||
dev: false
|
||||
|
||||
/jest-watch-typeahead@0.6.1(jest@27.0.6):
|
||||
resolution: {integrity: sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==}
|
||||
engines: {node: '>=10'}
|
||||
/jest-watch-typeahead@2.2.2(jest@27.0.6):
|
||||
resolution: {integrity: sha512-+QgOFW4o5Xlgd6jGS5X37i08tuuXNW8X0CV9WNFi+3n8ExCIP+E1melYhvYLjv5fE6D0yyzk74vsSO8I6GqtvQ==}
|
||||
engines: {node: ^14.17.0 || ^16.10.0 || >=18.0.0}
|
||||
peerDependencies:
|
||||
jest: ^26.0.0
|
||||
jest: ^27.0.0 || ^28.0.0 || ^29.0.0
|
||||
dependencies:
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
ansi-escapes: 6.1.0
|
||||
chalk: 5.2.0
|
||||
jest: 27.0.6
|
||||
jest-regex-util: 26.0.0
|
||||
jest-watcher: 26.6.2
|
||||
slash: 3.0.0
|
||||
string-length: 4.0.2
|
||||
strip-ansi: 6.0.1
|
||||
dev: false
|
||||
|
||||
/jest-watcher@26.6.2:
|
||||
resolution: {integrity: sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==}
|
||||
engines: {node: '>= 10.14.2'}
|
||||
dependencies:
|
||||
'@jest/test-result': 26.6.2
|
||||
'@jest/types': 26.6.2
|
||||
'@types/node': 18.15.13
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
jest-util: 26.6.2
|
||||
string-length: 4.0.2
|
||||
jest-regex-util: 29.4.3
|
||||
jest-watcher: 29.5.0
|
||||
slash: 5.0.0
|
||||
string-length: 5.0.1
|
||||
strip-ansi: 7.0.1
|
||||
dev: false
|
||||
|
||||
/jest-watcher@27.5.1:
|
||||
@ -8817,6 +8788,20 @@ packages:
|
||||
string-length: 4.0.2
|
||||
dev: false
|
||||
|
||||
/jest-watcher@29.5.0:
|
||||
resolution: {integrity: sha512-KmTojKcapuqYrKDpRwfqcQ3zjMlwu27SYext9pt4GlF5FUgB+7XE1mcCnSm6a4uUpFyQIkb6ZhzZvHl+jiBCiA==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
dependencies:
|
||||
'@jest/test-result': 29.5.0
|
||||
'@jest/types': 29.5.0
|
||||
'@types/node': 18.15.13
|
||||
ansi-escapes: 4.3.2
|
||||
chalk: 4.1.2
|
||||
emittery: 0.13.1
|
||||
jest-util: 29.5.0
|
||||
string-length: 4.0.2
|
||||
dev: false
|
||||
|
||||
/jest-worker@26.6.2:
|
||||
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
|
||||
engines: {node: '>= 10.13.0'}
|
||||
@ -10633,16 +10618,6 @@ packages:
|
||||
renderkid: 3.0.0
|
||||
dev: false
|
||||
|
||||
/pretty-format@26.6.2:
|
||||
resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
|
||||
engines: {node: '>= 10'}
|
||||
dependencies:
|
||||
'@jest/types': 26.6.2
|
||||
ansi-regex: 5.0.1
|
||||
ansi-styles: 4.3.0
|
||||
react-is: 17.0.2
|
||||
dev: false
|
||||
|
||||
/pretty-format@27.5.1:
|
||||
resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
@ -10652,6 +10627,15 @@ packages:
|
||||
react-is: 17.0.2
|
||||
dev: false
|
||||
|
||||
/pretty-format@29.5.0:
|
||||
resolution: {integrity: sha512-V2mGkI31qdttvTFX7Mt4efOqHXqJWMu4/r66Xh3Z3BwZaPfPJgp6/gbwoujRpPUtfEF6AUUWx3Jim3GCw5g/Qw==}
|
||||
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
|
||||
dependencies:
|
||||
'@jest/schemas': 29.4.3
|
||||
ansi-styles: 5.2.0
|
||||
react-is: 18.2.0
|
||||
dev: false
|
||||
|
||||
/pretty-time@1.1.0:
|
||||
resolution: {integrity: sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==}
|
||||
engines: {node: '>=4'}
|
||||
@ -10744,6 +10728,10 @@ packages:
|
||||
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
|
||||
dev: false
|
||||
|
||||
/react-is@18.2.0:
|
||||
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
|
||||
dev: false
|
||||
|
||||
/read-pkg-up@3.0.0:
|
||||
resolution: {integrity: sha512-YFzFrVvpC6frF1sz8psoHDBGF7fLPc+llq/8NB43oagqWkx8ar5zYtsTORtOjw9W2RHLpWP+zTWwBvf1bCmcSw==}
|
||||
engines: {node: '>=4'}
|
||||
@ -11363,6 +11351,11 @@ packages:
|
||||
engines: {node: '>=12'}
|
||||
dev: false
|
||||
|
||||
/slash@5.0.0:
|
||||
resolution: {integrity: sha512-n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==}
|
||||
engines: {node: '>=14.16'}
|
||||
dev: false
|
||||
|
||||
/slice-ansi@3.0.0:
|
||||
resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==}
|
||||
engines: {node: '>=8'}
|
||||
@ -11590,6 +11583,14 @@ packages:
|
||||
strip-ansi: 6.0.1
|
||||
dev: false
|
||||
|
||||
/string-length@5.0.1:
|
||||
resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==}
|
||||
engines: {node: '>=12.20'}
|
||||
dependencies:
|
||||
char-regex: 2.0.1
|
||||
strip-ansi: 7.0.1
|
||||
dev: false
|
||||
|
||||
/string-width@2.1.1:
|
||||
resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
|
||||
engines: {node: '>=4'}
|
||||
@ -11707,7 +11708,6 @@ packages:
|
||||
engines: {node: '>=12'}
|
||||
dependencies:
|
||||
ansi-regex: 6.0.1
|
||||
dev: true
|
||||
|
||||
/strip-bom@3.0.0:
|
||||
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
|
||||
@ -12072,7 +12072,7 @@ packages:
|
||||
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
/ts-jest@27.0.4(babel-jest@27.0.6)(jest@27.0.6)(typescript@4.9.3):
|
||||
/ts-jest@27.0.4(@babel/core@7.21.3)(babel-jest@27.0.6)(jest@27.0.6)(typescript@4.9.3):
|
||||
resolution: {integrity: sha512-c4E1ECy9Xz2WGfTMyHbSaArlIva7Wi2p43QOMmCqjSSjHP06KXv+aT+eSY+yZMuqsMi3k7pyGsGj2q5oSl5WfQ==}
|
||||
engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0}
|
||||
hasBin: true
|
||||
@ -12090,7 +12090,8 @@ packages:
|
||||
babel-jest:
|
||||
optional: true
|
||||
dependencies:
|
||||
babel-jest: 27.0.6
|
||||
'@babel/core': 7.21.3
|
||||
babel-jest: 27.0.6(@babel/core@7.21.3)
|
||||
bs-logger: 0.2.6
|
||||
buffer-from: 1.1.2
|
||||
fast-json-stable-stringify: 2.1.0
|
||||
@ -12206,6 +12207,11 @@ packages:
|
||||
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
/type-fest@3.8.0:
|
||||
resolution: {integrity: sha512-FVNSzGQz9Th+/9R6Lvv7WIAkstylfHN2/JYxkyhhmKFYh9At2DST8t6L6Lref9eYO8PXFTfG9Sg1Agg0K3vq3Q==}
|
||||
engines: {node: '>=14.16'}
|
||||
dev: false
|
||||
|
||||
/type-is@1.6.18:
|
||||
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
|
||||
engines: {node: '>= 0.6'}
|
||||
@ -12611,7 +12617,7 @@ packages:
|
||||
- supports-color
|
||||
dev: true
|
||||
|
||||
/vue-i18n@9.0.0:
|
||||
/vue-i18n@9.0.0(vue@3.2.47):
|
||||
resolution: {integrity: sha512-iks0eJDv/4cK/7tl/ooMUroNVVIGOK4kKS1PIHmPQk7QjT/sDfFM84vjPKgpARbw0GjJsOiADL43jufNfs9e9A==}
|
||||
engines: {node: '>= 10'}
|
||||
peerDependencies:
|
||||
@ -12620,9 +12626,10 @@ packages:
|
||||
'@intlify/core-base': 9.0.0
|
||||
'@intlify/shared': 9.0.0
|
||||
'@vue/devtools-api': 6.5.0
|
||||
vue: 3.2.47
|
||||
dev: false
|
||||
|
||||
/vue-loader@17.0.1(webpack@5.76.2):
|
||||
/vue-loader@17.0.1(vue@3.2.47)(webpack@5.76.2):
|
||||
resolution: {integrity: sha512-/OOyugJnImKCkAKrAvdsWMuwoCqGxWT5USLsjohzWbMgOwpA5wQmzQiLMzZd7DjhIfunzAGIApTOgIylz/kwcg==}
|
||||
peerDependencies:
|
||||
'@vue/compiler-sfc': '*'
|
||||
@ -12637,18 +12644,20 @@ packages:
|
||||
chalk: 4.1.2
|
||||
hash-sum: 2.0.0
|
||||
loader-utils: 2.0.4
|
||||
vue: 3.2.47
|
||||
webpack: 5.76.2
|
||||
dev: false
|
||||
|
||||
/vue-router@4.1.6:
|
||||
/vue-router@4.1.6(vue@3.2.47):
|
||||
resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==}
|
||||
peerDependencies:
|
||||
vue: ^3.2.0
|
||||
dependencies:
|
||||
'@vue/devtools-api': 6.5.0
|
||||
vue: 3.2.47
|
||||
dev: false
|
||||
|
||||
/vue3-jest@27.0.0-alpha.1(babel-jest@27.0.6)(jest@27.0.6)(ts-jest@27.0.4)(typescript@4.9.3):
|
||||
/vue3-jest@27.0.0-alpha.1(@babel/core@7.21.3)(babel-jest@27.0.6)(jest@27.0.6)(ts-jest@27.0.4)(typescript@4.9.3)(vue@3.2.47):
|
||||
resolution: {integrity: sha512-F/pSFbpLcYVIv0ogNMFwT+W+r9tCRfLw84IIqqyocD1FZaW6m3RpfqwQsOXgYJVXFSdj4t3xbgj967s8WMrZjQ==}
|
||||
peerDependencies:
|
||||
'@babel/core': 7.x
|
||||
@ -12663,16 +12672,18 @@ packages:
|
||||
typescript:
|
||||
optional: true
|
||||
dependencies:
|
||||
'@babel/core': 7.21.3
|
||||
'@babel/plugin-transform-modules-commonjs': 7.21.2(@babel/core@7.21.3)
|
||||
babel-jest: 27.0.6
|
||||
babel-jest: 27.0.6(@babel/core@7.21.3)
|
||||
chalk: 2.4.2
|
||||
convert-source-map: 1.9.0
|
||||
extract-from-css: 0.4.4
|
||||
jest: 27.0.6
|
||||
source-map: 0.5.6
|
||||
ts-jest: 27.0.4(babel-jest@27.0.6)(jest@27.0.6)(typescript@4.9.3)
|
||||
ts-jest: 27.0.4(@babel/core@7.21.3)(babel-jest@27.0.6)(jest@27.0.6)(typescript@4.9.3)
|
||||
tsconfig: 7.0.0
|
||||
typescript: 4.9.3
|
||||
vue: 3.2.47
|
||||
transitivePeerDependencies:
|
||||
- supports-color
|
||||
dev: false
|
||||
|
Loading…
x
Reference in New Issue
Block a user