Skip to content

Commit

Permalink
Fix build and add "do you know"
Browse files Browse the repository at this point in the history
  • Loading branch information
unional committed May 19, 2016
1 parent 97d7052 commit d3b9f26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/beta/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ module.exports = yeoman.Base.extend({
);

this.fs.copyTpl(
this.templatePath('template/test_tsconfig.json`),
this.templatePath('template/test_tsconfig.json'),
this.destinationPath('test/tsconfig.json'),
{
sourceMain: this.props.sourceMain
Expand Down Expand Up @@ -812,7 +812,7 @@ module.exports = yeoman.Base.extend({
'typings.json/version shows up when the consumer installs it'
];
this.showingQuotes = setInterval(() => {
this.log(quotes[Math.round(Math.random() * quotes.length - 0.5)]);
this.log('Do you know: ' + quotes[Math.round(Math.random() * quotes.length - 0.5)]);
}, 5000);
},
},
Expand Down

0 comments on commit d3b9f26

Please sign in to comment.