Skip to content

Commit

Permalink
feat(dgeni): add theme-switch to list of ignored packages (#2878)
Browse files Browse the repository at this point in the history
  • Loading branch information
griest024 committed Jun 15, 2024
1 parent 2a141cb commit 4df7eb9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/dgeni/src/transforms/daffodil-guides-package/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ import {
import { daffodilBasePackage } from '../daffodil-base-package';

//List of packages to be left out of Guide generation
const excludedPackages = <const>['branding', 'docs-utils'];
const excludedPackages = <const>[
'branding',
'docs-utils',
'theme-switch',
];
const excludedPackagesRegex = '!(' + excludedPackages.join('|') + ')';
const excludedDocs = <const>['internal'];
const excludedDocsRegex = '!(' + excludedDocs.join('|') + ')';
Expand Down

0 comments on commit 4df7eb9

Please sign in to comment.