UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

15 lines (12 loc) 238 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.addPath = addPath; /** * Synchronously adds a path to git staging */ function addPath(sh, repoPath) { sh.cd(repoPath); sh.exec('git add .'); }