feat: 优化依赖版本

This commit is contained in:
harrywan 2021-07-27 20:30:34 +08:00
parent d0e4934f3e
commit d31d07bbbb
12 changed files with 3830 additions and 4565 deletions

View File

@ -5,7 +5,7 @@ import { navbar, sidebar } from './configs'
const config: UserConfig<DefaultThemeOptions> = { const config: UserConfig<DefaultThemeOptions> = {
base: '/fesjs/', base: '/fesjs/',
evergreen: process.env.NODE_ENV !== 'production', // evergreen: process.env.NODE_ENV !== 'production',
head: [['link', { rel: 'manifest', href: '/fesjs/manifest.webmanifest' }], ['link', { rel: 'icon', href: `/fesjs/logo.png` }]], head: [['link', { rel: 'manifest', href: '/fesjs/manifest.webmanifest' }], ['link', { rel: 'icon', href: `/fesjs/logo.png` }]],

View File

@ -3,7 +3,7 @@ import type { SidebarConfig } from '@vuepress/theme-default'
export const en: SidebarConfig = { export const en: SidebarConfig = {
'/guide/': [ '/guide/': [
{ {
isGroup: true, // isGroup: true,
text: '介绍', text: '介绍',
children: [ children: [
'/guide/README.md', '/guide/README.md',
@ -11,7 +11,7 @@ export const en: SidebarConfig = {
], ],
}, },
{ {
isGroup: true, // isGroup: true,
text: '基础', text: '基础',
children: [ children: [
'/guide/directory-structure.md', '/guide/directory-structure.md',
@ -26,7 +26,7 @@ export const en: SidebarConfig = {
] ]
}, },
{ {
isGroup: true, // isGroup: true,
text: '进阶', text: '进阶',
children: [ children: [
] ]
@ -42,13 +42,13 @@ export const en: SidebarConfig = {
], ],
'/reference/plugin/': [ '/reference/plugin/': [
{ {
isGroup: true, // isGroup: true,
text: 'Presets', text: 'Presets',
children: [ children: [
], ],
}, },
{ {
isGroup: true, // isGroup: true,
text: 'Plugins', text: 'Plugins',
children: [ children: [
'/reference/plugin/plugins/access.md', '/reference/plugin/plugins/access.md',
@ -66,7 +66,7 @@ export const en: SidebarConfig = {
], ],
}, },
{ {
isGroup: true, // isGroup: true,
text: '插件开发', text: '插件开发',
children: [ children: [
'/reference/plugin/dev/README.md', '/reference/plugin/dev/README.md',

View File

@ -3,7 +3,7 @@ import type { SidebarConfig } from '@vuepress/theme-default'
export const zh: SidebarConfig = { export const zh: SidebarConfig = {
'/zh/guide/': [ '/zh/guide/': [
{ {
isGroup: true, // isGroup: true,
text: '介绍', text: '介绍',
children: [ children: [
'/zh/guide/README.md', '/zh/guide/README.md',
@ -11,7 +11,7 @@ export const zh: SidebarConfig = {
], ],
}, },
{ {
isGroup: true, // isGroup: true,
text: '基础', text: '基础',
children: [ children: [
'/zh/guide/directory-structure.md', '/zh/guide/directory-structure.md',
@ -26,7 +26,7 @@ export const zh: SidebarConfig = {
] ]
}, },
{ {
isGroup: true, // isGroup: true,
text: '进阶', text: '进阶',
children: [ children: [
] ]
@ -42,13 +42,13 @@ export const zh: SidebarConfig = {
], ],
'/zh/reference/plugin/': [ '/zh/reference/plugin/': [
{ {
isGroup: true, // isGroup: true,
text: 'Presets', text: 'Presets',
children: [ children: [
], ],
}, },
{ {
isGroup: true, // isGroup: true,
text: 'Plugins', text: 'Plugins',
children: [ children: [
'/zh/reference/plugin/plugins/access.md', '/zh/reference/plugin/plugins/access.md',
@ -66,7 +66,7 @@ export const zh: SidebarConfig = {
], ],
}, },
{ {
isGroup: true, // isGroup: true,
text: '插件开发', text: '插件开发',
children: [ children: [
'/zh/reference/plugin/dev/README.md', '/zh/reference/plugin/dev/README.md',

View File

@ -57,6 +57,7 @@ export default {
</config> </config>
``` ```
如果只是不想展示`side`,则: 如果只是不想展示`side`,则:
```
<config lang="json"> <config lang="json">
{ {
"layout": { "layout": {

View File

@ -57,6 +57,7 @@ export default {
</config> </config>
``` ```
如果只是不想展示`side`,则: 如果只是不想展示`side`,则:
```
<config lang="json"> <config lang="json">
{ {
"layout": { "layout": {

View File

@ -31,20 +31,16 @@
"devDependencies": { "devDependencies": {
"@commitlint/cli": "^11.0.0", "@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0", "@commitlint/config-conventional": "^11.0.0",
"@vuepress/plugin-docsearch": "^2.0.0-alpha.18", "@vuepress/plugin-docsearch": "^2.0.0-beta.22",
"@vuepress/plugin-pwa": "^2.0.0-alpha.18", "@vuepress/plugin-pwa": "^2.0.0-beta.22",
"@vuepress/plugin-pwa-popup": "^2.0.0-alpha.18", "@vuepress/plugin-pwa-popup": "^2.0.0-beta.22",
"@vuepress/theme-vue": "^2.0.0-alpha.18",
"@webank/eslint-config-webank": "0.3.0", "@webank/eslint-config-webank": "0.3.0",
"commitizen": "^4.2.1", "commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0", "cz-conventional-changelog": "^3.3.0",
"esbuild-loader": "^2.7.0",
"postcss-loader": "^5.0.0",
"postcss": "^8.0.0",
"father-build": "^1.19.1", "father-build": "^1.19.1",
"husky": "^4.3.0", "husky": "^4.3.0",
"lint-staged": "^10.4.0", "lint-staged": "^10.4.0",
"vuepress": "^2.0.0-alpha.18" "vuepress": "^2.0.0-beta.22"
}, },
"lint-staged": { "lint-staged": {
"*.{js,jsx,vue,ts}": [ "*.{js,jsx,vue,ts}": [

View File

@ -32,7 +32,7 @@
"peerDependencies": { "peerDependencies": {
"@ant-design/icons-vue": "^5.1.6", "@ant-design/icons-vue": "^5.1.6",
"@fesjs/fes": "^2.0.0", "@fesjs/fes": "^2.0.0",
"ant-design-vue": "2.0.0", "ant-design-vue": "^2.2.0",
"vue": "^3.0.5" "vue": "^3.0.5"
} }
} }

View File

@ -33,7 +33,7 @@
"peerDependencies": { "peerDependencies": {
"@ant-design/icons-vue": "^5.1.6", "@ant-design/icons-vue": "^5.1.6",
"@fesjs/fes": "^2.0.0", "@fesjs/fes": "^2.0.0",
"ant-design-vue": "2.0.0", "ant-design-vue": "^2.2.0",
"vue": "^3.0.5" "vue": "^3.0.5"
} }
} }

View File

@ -48,7 +48,7 @@
"dependencies": { "dependencies": {
"@fesjs/fes": "^2.0.0", "@fesjs/fes": "^2.0.0",
"vue": "^3.0.5", "vue": "^3.0.5",
"ant-design-vue": "2.0.0" "ant-design-vue": "^2.2.0"
}, },
"private": true "private": true
} }

View File

@ -48,7 +48,7 @@
"dependencies": { "dependencies": {
"@fesjs/fes": "^2.0.0", "@fesjs/fes": "^2.0.0",
"vue": "^3.0.5", "vue": "^3.0.5",
"ant-design-vue": "2.0.0" "ant-design-vue": "^2.2.0"
}, },
"private": true "private": true
} }

View File

@ -57,8 +57,8 @@
"@fesjs/plugin-request": "^2.0.0", "@fesjs/plugin-request": "^2.0.0",
"@fesjs/plugin-qiankun": "^2.0.0", "@fesjs/plugin-qiankun": "^2.0.0",
"@fesjs/plugin-sass": "^2.0.0", "@fesjs/plugin-sass": "^2.0.0",
"@fesjs/plugin-monaco-editor": "^2.0.0-rc.0", "@fesjs/plugin-monaco-editor": "^2.0.0-beta.0",
"ant-design-vue": "2.0.0", "ant-design-vue": "^2.2.0",
"vue": "^3.0.5", "vue": "^3.0.5",
"vuex": "^4.0.0" "vuex": "^4.0.0"
}, },

8343
yarn.lock

File diff suppressed because it is too large Load Diff