chore: change destination dir for docs output
This commit is contained in:
@@ -19,6 +19,7 @@ export default defineUserConfig<DefaultThemeOptions>({
|
|||||||
description: 'Visualize your ideas with Vue Flow, a highly customizable Vue3 Flowchart library.',
|
description: 'Visualize your ideas with Vue Flow, a highly customizable Vue3 Flowchart library.',
|
||||||
head: head as HeadConfig[],
|
head: head as HeadConfig[],
|
||||||
|
|
||||||
|
dest: resolve(__dirname, '../../dist'),
|
||||||
bundler: '@vuepress/bundler-vite',
|
bundler: '@vuepress/bundler-vite',
|
||||||
bundlerConfig: {
|
bundlerConfig: {
|
||||||
viteOptions: {
|
viteOptions: {
|
||||||
|
|||||||
+2
-1
@@ -15,7 +15,8 @@
|
|||||||
"prerelease": "git-cliff --output CHANGELOG.md && git add CHANGELOG.md && git commit -m \"chore: Update CHANGELOG.md\"",
|
"prerelease": "git-cliff --output CHANGELOG.md && git add CHANGELOG.md && git commit -m \"chore: Update CHANGELOG.md\"",
|
||||||
"release": "yarn turbo run release",
|
"release": "yarn turbo run release",
|
||||||
"test": "yarn turbo run test",
|
"test": "yarn turbo run test",
|
||||||
"lint": "yarn turbo run lint"
|
"lint": "yarn turbo run lint",
|
||||||
|
"typedocs": "yarn turbo run typedoc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@antfu/eslint-config": "^0.9.0",
|
"@antfu/eslint-config": "^0.9.0",
|
||||||
|
|||||||
+3
-3
@@ -4,17 +4,17 @@
|
|||||||
"pipeline": {
|
"pipeline": {
|
||||||
"build": {
|
"build": {
|
||||||
"dependsOn": ["^build", "types", "theme"],
|
"dependsOn": ["^build", "types", "theme"],
|
||||||
"outputs": ["dist/**", ".vuepress/dist/**"]
|
"outputs": ["dist/**"]
|
||||||
},
|
},
|
||||||
|
|
||||||
"types": {
|
"types": {
|
||||||
"outputs": []
|
"outputs": ["dist/**"]
|
||||||
},
|
},
|
||||||
"typedoc": {
|
"typedoc": {
|
||||||
"dependsOn": ["types"]
|
"dependsOn": ["types"]
|
||||||
},
|
},
|
||||||
"theme": {
|
"theme": {
|
||||||
"outputs": []
|
"outputs": ["dist/**"]
|
||||||
},
|
},
|
||||||
|
|
||||||
"test": {
|
"test": {
|
||||||
|
|||||||
Reference in New Issue
Block a user