@fabiospampinato/autogit
Version:
Define commands, using plugins, to execute across all your repositories.
21 lines (11 loc) • 289 B
text/typescript
/* IMPORT */
import Prompt from './prompt';
import autogit from '.';
/* WIZARD */
async function wizard () {
const command = await Prompt.command (),
repositories = await Prompt.repositories ();
autogit ( command, repositories );
}
/* EXPORT */
export default wizard;