mirror of
https://github.com/strapi/strapi.git
synced 2025-07-20 23:47:46 +00:00
19 lines
545 B
JavaScript
Executable File
19 lines
545 B
JavaScript
Executable File
/**
|
|
* componentExists
|
|
*
|
|
* Check whether the given component exist in either the components or containers directory
|
|
*/
|
|
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const pageComponents = fs.readdirSync(path.resolve(process.cwd(), 'admin', 'src', 'components'));
|
|
const pageContainers = fs.readdirSync(path.resolve(process.cwd(), 'admin', 'src', 'containers'));
|
|
const components = pageComponents.concat(pageContainers);
|
|
|
|
function componentExists(comp) {
|
|
return components.indexOf(comp) >= 0;
|
|
}
|
|
|
|
module.exports = componentExists;
|