UNPKG

reactist

Version:

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

18 lines (16 loc) 310 B
'use strict'; const shell = require('shelljs'); module.exports = { runUnitTests() { shell.exec('npm run test'); }, build() { shell.exec('npm run build'); }, deploy() { shell.exec('npm run deploy'); }, start() { shell.exec('npm run start'); } };