Debugging workflow

This commit is contained in:
thepaperpilot 2022-03-11 00:44:40 -06:00
parent f1a414aafc
commit 7241afe2d2
3 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,5 +1,5 @@
node_modules
.vitepress/dist
docs/.vitepress/dist
docs/api
components
typedoc-theme

View file

@ -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: [] };

View file

@ -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;