howardroark / pollinate

Template your base files and generate new projects from Git(Hub).
The Unlicense
225 stars 16 forks source link

Complete command should accept an array #59

Open jednano opened 5 years ago

jednano commented 5 years ago

Be great if the complete command accepted a string[]. Ultimately, I want to do this:

{
  "complete": [
    "cd {{ name or org }}",
    "git init",
    "npm install",
    "git add .",
    "git commit -m 'initial commit'",
    "git remote add origin https://github.com/{{ org or name }}/{{ name or org }}.git",
    "git push -u origin master",
    "code ."
  ]
}

Related: #13