Skip to content

Commit

Permalink
fix: incorrectly scaffolded npm keywords (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepmr authored Apr 7, 2020
1 parent ad8fdda commit b8f23d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ module.exports = async function main(argv) {
answers.license = answers.license.key
answers.private = !answers.oss
answers.access = answers.oss ? 'public' : 'restricted'
answers.keywords = JSON.stringify(['telus'].concat(answers.topics))
answers.keywords = ['telus'].concat(answers.topics)

// write license file
await write(join(argv.path, 'LICENSE'), `${license}\n`)
Expand Down

0 comments on commit b8f23d3

Please sign in to comment.