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 3a18d67 commit 27cd651Copy full SHA for 27cd651
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. `build:ts` (plain tsc) is enough here and does not
50
+ # require the native `napi build`.
51
+ cd .. && npm run build:ts && npm run js-doc
52
@echo
53
@echo "JSDoc build finished. The API docs are in ../public/docs/."
54
0 commit comments