UNPKG

@oscarmoralex/push-cli

Version:

This application will help you to do : git add . & git commit & git push with a single instruction

20 lines (19 loc) 466 B
// 'use strict'; import boxen from 'boxen'; import chalk from 'chalk'; import alert from 'cli-alerts'; import {execa} from 'execa'; import ora from 'ora'; import path from 'path'; export const {green, cyan, yellow, dim, bold, red} = chalk; global.green = green; global.cyan = cyan; global.yellow = yellow; global.red = red; global.dim = dim; global.bold = bold; global.boxen = boxen; global.ora = ora; global.execa = execa; global.path = path; global.alert = alert;