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 node_modules
.vitepress/dist docs/.vitepress/dist
docs/api docs/api
components components
typedoc-theme typedoc-theme

View file

@ -73,6 +73,7 @@ module.exports = {
function generateAPISidebar() { function generateAPISidebar() {
const sidebar = []; const sidebar = [];
console.log(path.resolve("./docs/api/modules"))
const modules = fs.readdirSync("./docs/api/modules"); const modules = fs.readdirSync("./docs/api/modules");
modules.forEach(file => { modules.forEach(file => {
const moduleSidebar = { text: camelToTitle(file), children: [] }; const moduleSidebar = { text: camelToTitle(file), children: [] };

View file

@ -14,7 +14,6 @@ export class ProfectusTheme extends MarkdownTheme {
constructor(renderer: Renderer) { constructor(renderer: Renderer) {
super(renderer); super(renderer);
console.log("!?!?!")
this.entryDocument = 'index.md'; this.entryDocument = 'index.md';
this.hideBreadcrumbs = true; this.hideBreadcrumbs = true;
this.hideInPageTOC = true; this.hideInPageTOC = true;