Skip to content

Commit

Permalink
🐛 Fix bug when engines infos were not found
Browse files Browse the repository at this point in the history
  • Loading branch information
Franck committed Jun 8, 2019
1 parent c7dd722 commit 918140e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "readme-md-generator",
"version": "0.1.1",
"version": "0.1.2",
"description": "Generates beautiful README files from git config & package.json infos",
"main": "src/index.js",
"bin": {
Expand Down
4 changes: 3 additions & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ const askQuestions = async () => {
const projectInfos = await getProjectInfos()
let answersContext = {
isGithubRepos: projectInfos.isGithubRepos,
repositoryUrl: projectInfos.repositoryUrl
repositoryUrl: projectInfos.repositoryUrl,
projectPrerequisites: undefined
}

const questionFns = [
askProjectName,
askProjectVersion,
Expand Down

0 comments on commit 918140e

Please sign in to comment.