chore: change destination dir for docs output

This commit is contained in:
Braks
2022-04-11 00:26:47 +02:00
parent c40d17c7d6
commit de75e257a5
3 changed files with 6 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ export default defineUserConfig<DefaultThemeOptions>({
description: 'Visualize your ideas with Vue Flow, a highly customizable Vue3 Flowchart library.',
head: head as HeadConfig[],
dest: resolve(__dirname, '../../dist'),
bundler: '@vuepress/bundler-vite',
bundlerConfig: {
viteOptions: {

View File

@@ -15,7 +15,8 @@
"prerelease": "git-cliff --output CHANGELOG.md && git add CHANGELOG.md && git commit -m \"chore: Update CHANGELOG.md\"",
"release": "yarn turbo run release",
"test": "yarn turbo run test",
"lint": "yarn turbo run lint"
"lint": "yarn turbo run lint",
"typedocs": "yarn turbo run typedoc"
},
"devDependencies": {
"@antfu/eslint-config": "^0.9.0",

View File

@@ -4,17 +4,17 @@
"pipeline": {
"build": {
"dependsOn": ["^build", "types", "theme"],
"outputs": ["dist/**", ".vuepress/dist/**"]
"outputs": ["dist/**"]
},
"types": {
"outputs": []
"outputs": ["dist/**"]
},
"typedoc": {
"dependsOn": ["types"]
},
"theme": {
"outputs": []
"outputs": ["dist/**"]
},
"test": {