File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ const pkg = require('./../package.json')
7
7
8
8
module . exports = {
9
9
componentsRoot : 'src/components' , // the folder where CLI will start searching for components.
10
- components : '**/[A-Z]*.ts' , // the glob to define what files should be documented as components (relative to componentRoot)
10
+ components : [
11
+ '**/[A-Z]*.ts' ,
12
+ '!**/[A-Z]*.spec.ts'
13
+ ] ,
14
+ // the glob to define what files should be documented as components (relative to componentRoot)
11
15
outDir : 'docs/api' , // folder to save components docs in (relative to the current working directry)
12
16
getDocFileName : ( componentPath ) =>
13
17
componentPath . replace ( / \. t s $ / , '.md' ) , // specify the name of the input md file
You can’t perform that action at this time.
0 commit comments