tasks/git.js

  1. import simplegit from 'simple-git/promise';
  2. const git = simplegit();
  3. /**
  4. * Will execute git init and git add with a commit
  5. * @param {Object} options
  6. */
  7. export async function gitTasks(options) {
  8. try {
  9. await git.cwd(options.targetDirectory);
  10. await git.init();
  11. await git.add('.');
  12. await git.commit('Initial commit made by The Lazy Padwan');
  13. } catch (err) {
  14. console.error(err.message);
  15. }
  16. return;
  17. }
JAVASCRIPT
Copied!