Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
Add missing semicolons to index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurvr committed Dec 6, 2014
1 parent e46975e commit de0df1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var MobileGenerator = module.exports = yeoman.generators.Base.extend({
desc: 'Be quiet; only errors will be shown',
type: Boolean,
defaults: false
})
});
this.quiet = this.options['quiet'];
this.verbose = !this.quiet;

Expand Down Expand Up @@ -91,7 +91,7 @@ var MobileGenerator = module.exports = yeoman.generators.Base.extend({
.info('Fetching %s ...', url)
.info(chalk.yellow('This might take a few moments'));
downloader.use(function (res) {
res.on('data', function () { self.log.write('.') }) ;
res.on('data', function () { self.log.write('.') });
});
}

Expand Down Expand Up @@ -132,7 +132,7 @@ var MobileGenerator = module.exports = yeoman.generators.Base.extend({

// pagespeed
if (this.prompts.siteUrl) {
var repl = "$1url: '" + this.prompts.siteUrl + "'"
var repl = "$1url: '" + this.prompts.siteUrl + "'";
gulpfile = gulpfile.replace(/(pagespeed(?:.|\s)+)url:[^,]+/m, repl);
}

Expand Down

0 comments on commit de0df1e

Please sign in to comment.