Skip to content

Commit

Permalink
fix: make ISC the default license
Browse files Browse the repository at this point in the history
  • Loading branch information
seantrane committed Feb 28, 2019
1 parent 2d977c4 commit 56c42b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/prompting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export async function prompting(yo) {
if (yo.options['generators'].indexOf('license') !== -1) {
yo.composeWith(require.resolve('generator-license'), {
email: yo.answers.authorEmail || yo.answers.username + '@users.noreply.github.com',
license: yo.answers.license,
license: yo.answers.license || 'ISC',
name: yo.answers.authorName || yo.answers.username,
output: resolve(yo.answers.destination, 'LICENSE'),
website: yo.answers.homepageUrl || yo.answers.authorUrl,
Expand Down

0 comments on commit 56c42b4

Please sign in to comment.