2017-05-16 16:32:54 +02:00

19 lines
527 B
JavaScript

/**
* 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(), 'app', 'components'));
const pageContainers = fs.readdirSync(path.resolve(process.cwd(), 'app', 'containers'));
const components = pageComponents.concat(pageContainers);
function componentExists(comp) {
return components.indexOf(comp) >= 0;
}
module.exports = componentExists;