Skip to content

Commit 9f45c04

Browse files
committed
Added composite category in docs build script
1 parent 7ba8152 commit 9f45c04

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

scripts/docs/buildDocsCommon.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ 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';
1011
const FOUNDATION_DOCS_DIR = './docs/foundation';
1112

1213
const VALID_COMPONENTS_CATEGORIES = [
@@ -95,6 +96,10 @@ function processComponents(components) {
9596

9697
let dirPath;
9798
switch (component.category) {
99+
case 'composite': {
100+
dirPath = `${COMPOSITE_DOCS_DIR}`;
101+
break;
102+
}
98103
case 'services': {
99104
dirPath = `${SERVICES_DOCS_DIR}`;
100105
break;

0 commit comments

Comments
 (0)