We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55d727a commit d2a7bfeCopy full SHA for d2a7bfe
1 file changed
docs/Makefile
@@ -43,7 +43,11 @@ clean:
43
# Generate output commands
44
.PHONY: jsdoc
45
jsdoc:
46
- cd .. && npm run js-doc
+ # Compile the TypeScript sources to JS first. Several modules (e.g. the
47
+ # UUID types) live only as .ts files whose compiled .js output is
48
+ # git-ignored; without this step JSDoc never sees them and their docs are
49
+ # missing from the build.
50
+ cd .. && npm run build && npm run js-doc
51
@echo
52
@echo "JSDoc build finished. The API docs are in ../public/docs/."
53
0 commit comments