Skip to content

Commit

Permalink
Remove extra logs
Browse files Browse the repository at this point in the history
  • Loading branch information
unional committed Jun 2, 2016
1 parent e73db1c commit 8f7f276
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions generators/beta/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,6 @@ module.exports = yeoman.Base.extend({
child.stderr.on('data', (data) => {
try {
const result = JSON.parse(data.toString());
console.log('stderr', result);
if (result.id === 'validate' || result.id === 'cached') {
this.props.sourceRepository = result.data.pkgMeta._source;
}
Expand Down Expand Up @@ -648,7 +647,6 @@ module.exports = yeoman.Base.extend({
if (this.git) return;

const done = this.async();
console.log('in cretaeGitRepo', this.typingsName, this.destinationPath(), this.props);
this.git = this.typingsName ? simpleGit(this.destinationPath()) : simpleGit();
this.git.clone(this.props.repositoryRemoteUrlToAdd, '.', () => {
done();
Expand Down

0 comments on commit 8f7f276

Please sign in to comment.