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