nebula/scripts/shared.js

20 lines
472 B
JavaScript
Raw Permalink Normal View History

2024-07-17 15:23:16 -04:00
/** Gets an array of components from a CEM object. */
export function getAllComponents(metadata) {
const allComponents = [];
metadata.modules.map(module => {
module.declarations?.map(declaration => {
if (declaration.customElement) {
const component = declaration;
const path = module.path;
if (component) {
allComponents.push(Object.assign(component, { path }));
}
}
});
});
return allComponents;
}