UNPKG

678 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.commands = exports.topics = undefined;
7
8var _klawSync = require('klaw-sync');
9
10var _klawSync2 = _interopRequireDefault(_klawSync);
11
12function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13
14const topics = exports.topics = [{ name: 'plugins', description: 'manage plugins' }, { name: 'update', description: 'update CLI' }];
15
16const commands = exports.commands = (0, _klawSync2.default)(__dirname, { nodir: true }).filter(f => f.path.endsWith('.js')).filter(f => !f.path.endsWith('.test.js')).filter(f => f.path !== __filename).map(f => require(f.path));
\No newline at end of file