Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
foolishchow committed Aug 15, 2024
2 parents 6bcc7c6 + 9c3d011 commit 3db07cf
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 4,728 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ site
upkg
types
dist
.temp
.temp
docs
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
// "**/node_modules": true,
},
"editor.formatOnSave": true,
"[typescript]": {
Expand Down
5 changes: 5 additions & 0 deletions build-doc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

mkdir docs
mv ant-design/docs/.vitepress/dist ./docs/ant-design
mv element/docs/.vitepress/dist ./docs/element
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { SetupContext } from 'vue'
import Layout from 'vitepress-theme-document/src/Layout.vue'
import 'vitepress-theme-document/src/custom.css'
import { ElConfigProvider } from 'element-plus'
import zhCN from 'element-plus/lib/locale/lang/zh-cn'
import zhCN from 'element-plus/dist/locale/zh-cn.mjs'
import 'element-plus/dist/index.css'
import './style-fix.css'
export default function ElementPlusProvidedLayout(props: any, context: SetupContext) {
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
"serve": "lerna run serve --parallel",
"watch": "lerna run watch --parallel",
"dev": "lerna run dev --parallel",
"b": "lerna bootstrap"
"b": "lerna bootstrap",
"build": "lerna run build",
"doc": "lerna run docs:build && ./build-doc.sh"
}
}
Loading

0 comments on commit 3db07cf

Please sign in to comment.