Skip to content

Commit c019467

Browse files
author
Craigory Coppola
committed
fix(nxdoc): generators do not appear in index if no executors are present
1 parent b79e95f commit c019467

File tree

2 files changed

+7
-1
lines changed
  • docs/nxdoc
  • packages/nxdoc/src/generators/generate-docs/templates/index/__projectFileName__

2 files changed

+7
-1
lines changed

docs/nxdoc/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
# nxdoc
2+
3+
## Generators
4+
5+
### [generate-docs](./generators/generate-docs.md)
6+
7+
Automatic documentation generator for Nx Plugins

packages/nxdoc/src/generators/generate-docs/templates/index/__projectFileName__/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <%= project.name %>
22

3-
<% if(Object.values(executors).length > 0) {%>
3+
<% if(Object.values(generators).length > 0) {%>
44

55
## Generators
66

0 commit comments

Comments
 (0)