Skip to content

Commit baf6dc0

Browse files
authored
Revert "Docs - added composite tab to docs build script (#3709)" (#3714)
This reverts commit 67c484e.
1 parent cd2c8a8 commit baf6dc0

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

scripts/docs/buildDocsCommon.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const fs = require('fs');
77

88
const COMPONENTS_DOCS_DIR = './docs/components';
99
const SERVICES_DOCS_DIR = './docs/services';
10-
const COMPOSITE_DOCS_DIR = './docs/composite';
1110
const FOUNDATION_DOCS_DIR = './docs/foundation';
1211

1312
const VALID_COMPONENTS_CATEGORIES = [
@@ -28,8 +27,7 @@ const VALID_COMPONENTS_CATEGORIES = [
2827
'infra',
2928
// non components categories
3029
'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)
3331
];
3432

3533
function buildDocs(apiFolders, componentsPreProcess) {
@@ -97,10 +95,6 @@ function processComponents(components) {
9795

9896
let dirPath;
9997
switch (component.category) {
100-
case 'composite': {
101-
dirPath = `${COMPOSITE_DOCS_DIR}`;
102-
break;
103-
}
10498
case 'services': {
10599
dirPath = `${SERVICES_DOCS_DIR}`;
106100
break;

0 commit comments

Comments
 (0)