500tech/angular-kick

View on GitHub
lib/commands/commands.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';

const exportedCommands = {};

const commands = [
  'help',
  'about',
  'new',
  'generate',
  'destroy',
  'setup',
  'start',
  'tdd',
  'bundle',
  'test',
  'lint',
  'upgrade'
];

commands.forEach((command) => exportedCommands[command] = require('../commands/' + command));

module.exports = exportedCommands;