File tree Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Expand file tree Collapse file tree 1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ const fs = require('fs');
7
7
8
8
const COMPONENTS_DOCS_DIR = './docs/components' ;
9
9
const SERVICES_DOCS_DIR = './docs/services' ;
10
- const COMPOSITE_DOCS_DIR = './docs/composite' ;
11
10
const FOUNDATION_DOCS_DIR = './docs/foundation' ;
12
11
13
12
const VALID_COMPONENTS_CATEGORIES = [
@@ -28,8 +27,7 @@ const VALID_COMPONENTS_CATEGORIES = [
28
27
'infra' ,
29
28
// non components categories
30
29
'services' ,
31
- 'dev' , // development category for components we don't want to render in our docs (used in test.api.json),
32
- 'composite'
30
+ 'dev' // development category for components we don't want to render in our docs (used in test.api.json)
33
31
] ;
34
32
35
33
function buildDocs ( apiFolders , componentsPreProcess ) {
@@ -97,10 +95,6 @@ function processComponents(components) {
97
95
98
96
let dirPath ;
99
97
switch ( component . category ) {
100
- case 'composite' : {
101
- dirPath = `${ COMPOSITE_DOCS_DIR } ` ;
102
- break ;
103
- }
104
98
case 'services' : {
105
99
dirPath = `${ SERVICES_DOCS_DIR } ` ;
106
100
break ;
You can’t perform that action at this time.
0 commit comments