We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba8152 commit 9f45c04Copy full SHA for 9f45c04
scripts/docs/buildDocsCommon.js
@@ -7,6 +7,7 @@ const fs = require('fs');
7
8
const COMPONENTS_DOCS_DIR = './docs/components';
9
const SERVICES_DOCS_DIR = './docs/services';
10
+const COMPOSITE_DOCS_DIR = './docs/composite';
11
const FOUNDATION_DOCS_DIR = './docs/foundation';
12
13
const VALID_COMPONENTS_CATEGORIES = [
@@ -95,6 +96,10 @@ function processComponents(components) {
95
96
97
let dirPath;
98
switch (component.category) {
99
+ case 'composite': {
100
+ dirPath = `${COMPOSITE_DOCS_DIR}`;
101
+ break;
102
+ }
103
case 'services': {
104
dirPath = `${SERVICES_DOCS_DIR}`;
105
break;
0 commit comments