Skip to content

Commit a40b6b9

Browse files
authored
Use BetterDocs to adapt JSDocs to TypeScript (#646)
1 parent b1b99de commit a40b6b9

File tree

148 files changed

+22464
-22788
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+22464
-22788
lines changed

Makefile.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ target.test = function() {
105105

106106
target.docs = function() {
107107
echo('Generating documentation');
108-
nodeCLI.exec('jsdoc', '-r', '-d ./docs/jsdoc ', JS_DIR);
108+
nodeCLI.exec('jsdoc', '-r', '-c ./jsdoc.json', '-d ./docs/jsdoc ', JS_DIR);
109109
};
110110

111111
target.docsDev = function() {
112112
echo('Generating dev documentation');
113-
nodeCLI.exec('jsdoc', '-p', '-r', '-d ./docs/jsdoc-dev ', JS_DIR);
113+
nodeCLI.exec('jsdoc', '-p', '-r', '-c ./jsdoc.json', '-d ./docs/jsdoc-dev ', JS_DIR);
114114
};
115115

116116
target.patch = function() {

0 commit comments

Comments
 (0)