Skip to content

Commit

Permalink
style: 💄 Change words letters
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikael-R committed Aug 24, 2020
1 parent 00608b4 commit ff94d65
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "readme-template-generator",
"version": "0.8.7",
"version": "0.8.9",
"description": "CLI to help create readme file to document your project",
"private": false,
"repository": {
Expand Down Expand Up @@ -76,7 +76,7 @@
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run dist",
"pre-commit": "yarn format && yarn dist",
"prepare-commit-msg": "exec < /dev/tty && gitcz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
Expand Down
2 changes: 1 addition & 1 deletion src/commands/readme-template-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const command: GluegunCommand = {
)
}

if (packageJSON?.name) {
if (!packageJSON?.private) {
badges.toSelect.push('NPM Version', 'NPM Monthly Downloads')
}

Expand Down
2 changes: 1 addition & 1 deletion src/extensions/existingFiles.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ExtendedGluegunToolbox from 'src/interfaces/extended-gluegun-toolbox'

export interface ExistingFiles {
(file: string, directory?: string): string[]
(file: string, directory?: string): string[]
}

export default (toolbox: ExtendedGluegunToolbox) => {
Expand Down
2 changes: 1 addition & 1 deletion src/templates/README.md.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,4 @@
${props.author.name && props.author.github && `Copyright © ${new Date().getFullYear()} [${props.author.name}](https://github.com/${props.author.github})\n\n`}
This project is licensed by [${props.license.name}](${props.license.url}).\n\n[Back To The Top](#title)\n\n---\n`%><% } %>

_This README was generated with 💟 by [Readme-Template-Generator](https://github.com/Mikael-R/Readme-Template-Generator)_
_This README was generated with 💟 by [readme-template-generator](https://github.com/Mikael-R/readme-template-generator)_

0 comments on commit ff94d65

Please sign in to comment.