UNPKG

almost-git

Version:

almost-git is a tool for model and text co-evolution

12 lines (11 loc) 294 B
var lib = require('../../lib'); exports.command = 'init' exports.desc = 'Initialize the repo to use almost-git' exports.builder = {} exports.handler = () => { lib.init('.').then(() => { console.log('Repository correctly initialized!') }).catch((err) => { console.error(err); }) }