reactist
Version:
A Command Line Interface tool that automate workflow when your working with React.js project
13 lines (11 loc) • 352 B
JavaScript
;
const commandService = require('../service/command-service.js');
const logger = require('../log/logger.js');
module.exports = function test(program) {
program
.command('deploy')
.description('test all unit tests and build production code.')
.action(() => {
commandService.deploy();
});
};