diff --git a/scripts/helper.js b/scripts/helper.js index 7ad6b9bb0..bfde45385 100644 --- a/scripts/helper.js +++ b/scripts/helper.js @@ -17,8 +17,11 @@ const Chalk = require(`chalk`); const Path = require(`path`); const Fs = require(`fs`); const Os = require(`os`); +const Util = require('util'); const PKG = require( Path.normalize(`${ process.cwd() }/package.json`) ); +const Readdir = Util.promisify(Fs.readdir); +const Access = Util.promisify(Fs.access); //-------------------------------------------------------------------------------------------------------------------------------------------------------------- @@ -145,24 +148,34 @@ const GetDepTree = ( name ) => { /** - * Get all folders within a given path + * Get all modules within a given path + * The 'module' is a component folder * * @param {string} thisPath - The path that contains the desired folders * @param {boolean} verbose - Verbose flag either undefined or true * - * @return {array} - An array of names of each folder + * @return {Promise} - A promise to an array of names of each folder */ -const GetFolders = ( thisPath, verbose ) => { +const GetModules = async ( thisPath, verbose ) => { try { - let folders = Fs.readdirSync( thisPath ).filter( - thisFile => Fs.statSync(`${ thisPath }/${ thisFile }`).isDirectory() - ).filter( - thisFile => thisFile !== 'core' - ); - - return ['core', ...folders ]; // moving core to top - } - catch( error ) { + let dirContent = await Readdir( thisPath ); + let folders = ( await Promise.all( + dirContent.map( dirItem => { + let pkg = Path.normalize( `${ thisPath }/${ dirItem }/package.json` ); + return ( async () => { + try { + return await Access( pkg ) || dirItem; + } catch ( e ) { + return '' + } + } )() + } ) + ) ) + .filter( folder => folder !== '' && folder !== 'core' ); + + return [ 'core', ...folders ]; // moving core to top + } catch ( error ) { + console.error(error); return []; } }; @@ -620,11 +633,11 @@ HELPER.generate = (() => { */ init: () => { const packagesPath = Path.normalize(`${ __dirname }/../packages/`); - const allModules = GetFolders( packagesPath ); - - HELPER.generate.json( allModules ); - HELPER.generate.index( allModules ); - HELPER.generate.readme( allModules ); + GetModules( packagesPath ).then(allModules => { + HELPER.generate.json( allModules ); + HELPER.generate.index( allModules ); + HELPER.generate.readme( allModules ); + }); }, /** @@ -889,11 +902,11 @@ HELPER.test = (() => { return { init: () => { const packagesPath = Path.normalize(`${ __dirname }/../packages/`); - const allModules = GetFolders( packagesPath ); - - HELPER.test.dependencies( allModules ); - HELPER.test.packagejson( allModules ); - HELPER.test.changelog( allModules ); + GetModules( packagesPath ).then(allModules => { + HELPER.test.dependencies( allModules ); + HELPER.test.packagejson( allModules ); + HELPER.test.changelog( allModules ); + }); }, /**