indexr
Version:
Automated dynamic indexes for your ES6+ source code.
26 lines (21 loc) • 957 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _collect = require('../cli/collect');
var _collect2 = _interopRequireDefault(_collect);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
exports.default = [{
name: 'modules',
coercion: _collect2.default,
description: 'Glob string that determine which folders hold modules.',
flags: '-m --modules <string>',
long: 'A glob pathed to the rootFolder that will determine which folders are ' + 'module holders. If this is ommitted defaults to "**/modules/".'
}, {
name: 'modulesIgnore',
coercion: _collect2.default,
description: 'Glob string that determine which folders are ignored.',
flags: '-i --modules-ignore <string>',
long: 'A glob pathed to the rootFolder that will determine which folders are ' + 'not module holders. If this is ommitted nothing is ignored.'
}];
module.exports = exports['default'];