Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 947e87d

Browse files
feat(jsdoc package): use jsdoc rather than js doc-extractor
The `jsdoc` doc-extractor is compatible with the `js` version but provides additional functionality. The code following the jsdoc comment block is provided to the doc as an extra property that can be used by successive doc-processors. For instance, to extract the name of the described code item if no @name tag is provided.
1 parent 5846974 commit 947e87d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsdoc/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = function(config) {
22

3-
config.append('source.extractors', require('./extractors/js'));
3+
config.append('source.extractors', require('./extractors/jsdoc'));
44

55
config.append('processing.processors', [
66
require('./processors/doc-extractor'),

0 commit comments

Comments
 (0)