UNPKG

@zohodesk/client_build_tool

Version:

A CLI tool to build web applications and client libraries

25 lines (19 loc) 634 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _fs = require("fs"); var _path = require("path"); /* eslint-disable global-require */ const allConfigs = []; (0, _fs.readdirSync)((0, _path.join)(__dirname, 'commands')).forEach(folderName => { const modulePath = (0, _path.join)(__dirname, `./commands/${folderName}/config.js`); if ((0, _fs.existsSync)(modulePath)) { // eslint-disable-next-line import/no-dynamic-require const config = require(modulePath).default; allConfigs.push(config); } }); var _default = allConfigs; exports.default = _default;