UNPKG

deployment-tools

Version:

A Node.js scripts that helps you to compile and deploy the static assets (CSS/JavaScript/images) of your website without gulp and grunt using Node.js and npm scripts

10 lines (7 loc) 193 B
/* eslint-disable import/prefer-default-export */ import cp from 'child_process'; import { promisify } from 'bluebird'; const execAsync = promisify(cp.exec); export { execAsync, };