UNPKG

reactist

Version:

A Command Line Interface tool that automate workflow when your working with React.js project

13 lines (11 loc) 340 B
'use strict'; const commandService = require('../service/command-service.js'); const logger = require('../log/logger.js'); module.exports = function test(program) { program .command('start') .description('run webpack-dev-server on watch mode') .action(() => { commandService.start(); }); };