Added typedoc
This commit is contained in:
parent
2d806b6ceb
commit
1acbe66ba3
4 changed files with 1432 additions and 223 deletions
|
@ -10,3 +10,7 @@
|
||||||
.custom-block.warning {
|
.custom-block.warning {
|
||||||
background-color: #EBCB8B;
|
background-color: #EBCB8B;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
tr:nth-child(2n) {
|
||||||
|
background-color: var(--code-bg-color);
|
||||||
|
}
|
||||||
|
|
22
package.json
22
package.json
|
@ -6,7 +6,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vitepress serve",
|
"serve": "vitepress serve",
|
||||||
"dev": "vitepress dev",
|
"dev": "vitepress dev",
|
||||||
"build": "vitepress build"
|
"build": "vitepress build",
|
||||||
|
"typedoc": "cd profectus && vue-typedoc --logLevel Verbose --plugin typedoc-plugin-markdown --hideBreadcrumbs --hideInPageTOC --entryDocument index.md --plugin typedoc-plugin-rename-defaults --plugin typedoc-plugin-mdn-links"
|
||||||
},
|
},
|
||||||
"repository": "git+https://github.com/profectus-engine/profectus-docs.git",
|
"repository": "git+https://github.com/profectus-engine/profectus-docs.git",
|
||||||
"author": "thepaperpilot",
|
"author": "thepaperpilot",
|
||||||
|
@ -18,5 +19,22 @@
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vitepress": "^0.22.3"
|
"vitepress": "^0.22.3"
|
||||||
},
|
},
|
||||||
"private": true
|
"private": true,
|
||||||
|
"devDependencies": {
|
||||||
|
"@ivanv/vue-collapse-transition": "^1.0.2",
|
||||||
|
"@types/webpack-env": "^1.16.3",
|
||||||
|
"nanoevents": "^6.0.2",
|
||||||
|
"typedoc": "^0.22.13",
|
||||||
|
"typedoc-plugin-markdown": "^3.11.14",
|
||||||
|
"typedoc-plugin-mdn-links": "^1.0.5",
|
||||||
|
"typedoc-plugin-rename-defaults": "^0.4.0",
|
||||||
|
"typescript": "~4.5.5",
|
||||||
|
"vue-docgen-cli": "^4.44.17",
|
||||||
|
"vue-next-select": "^2.10.2",
|
||||||
|
"vue-panzoom": "^1.1.6",
|
||||||
|
"vue-textarea-autosize": "^1.1.1",
|
||||||
|
"vue-toastification": "^2.0.0-rc.1",
|
||||||
|
"vue-typedoc": "https://github.com/thepaperpilot/vue-typedoc",
|
||||||
|
"vuedraggable": "^2.24.3"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 909d370f130ff84576178a90e12a68c0f18ce4b2
|
Subproject commit a76182c0bde57041bb15a4fd82cafbd124e102d9
|
Loading…
Reference in a new issue