UNPKG

zenith-gen

Version:

A CLI tool designed to streamline the creation of projects within the Zenith Inova ecosystem, providing optimized configurations and modern development tools.

13 lines (12 loc) 314 B
import { execSync } from 'child_process'; export function gitCommit() { try { execSync('git add .', { stdio: 'inherit' }); execSync('git commit -m ":tada: Zenith Gen CLI Initial Commit"', { stdio: 'inherit', }); } catch (error) { console.log(error); } }