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 e9c9868 commit c9cc9c5Copy full SHA for c9cc9c5
1 file changed
docs/Makefile
@@ -43,7 +43,12 @@ 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
+ # TODO: This is only temporary work-around for #477
51
+ cd .. && npm run build && npm run js-doc
52
@echo
53
@echo "JSDoc build finished. The API docs are in ../public/docs/."
54
0 commit comments