Debugging workflow
This commit is contained in:
parent
f1a414aafc
commit
7241afe2d2
3 changed files with 2 additions and 2 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,5 +1,5 @@
|
|||
node_modules
|
||||
.vitepress/dist
|
||||
docs/.vitepress/dist
|
||||
docs/api
|
||||
components
|
||||
typedoc-theme
|
||||
|
|
|
@ -73,6 +73,7 @@ module.exports = {
|
|||
function generateAPISidebar() {
|
||||
const sidebar = [];
|
||||
|
||||
console.log(path.resolve("./docs/api/modules"))
|
||||
const modules = fs.readdirSync("./docs/api/modules");
|
||||
modules.forEach(file => {
|
||||
const moduleSidebar = { text: camelToTitle(file), children: [] };
|
||||
|
|
|
@ -14,7 +14,6 @@ export class ProfectusTheme extends MarkdownTheme {
|
|||
constructor(renderer: Renderer) {
|
||||
super(renderer);
|
||||
|
||||
console.log("!?!?!")
|
||||
this.entryDocument = 'index.md';
|
||||
this.hideBreadcrumbs = true;
|
||||
this.hideInPageTOC = true;
|
||||
|
|
Loading…
Reference in a new issue