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
|
node_modules
|
||||||
.vitepress/dist
|
docs/.vitepress/dist
|
||||||
docs/api
|
docs/api
|
||||||
components
|
components
|
||||||
typedoc-theme
|
typedoc-theme
|
||||||
|
|
|
@ -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: [] };
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue