Skip to content

Commit

Permalink
gulpfile - semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jun 19, 2014
1 parent 74908b8 commit 2a3f64e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ gulp.task('styles:components', function () {
.pipe($.autoprefixer('last 1 version'))
.pipe(gulp.dest('app/styles/components'))
.pipe($.size({title: 'styles:components'}));
})
});

// Compile Any Other Sass Files You Added (app/styles)
gulp.task('styles:scss', function () {
Expand Down Expand Up @@ -101,7 +101,7 @@ gulp.task('html', function () {
.pipe($.if('*.css', $.uncss({ html: ['app/index.html','app/styleguide/index.html'] })))
.pipe($.useref.restore())
.pipe($.useref())
// Update Production Style Guide Paths
// Update Production Style Guide Paths
.pipe($.replace('components/components.css', 'components/main.min.css'))
// Minify Any HTML
.pipe($.minifyHtml())
Expand Down Expand Up @@ -141,12 +141,12 @@ gulp.task('default', ['clean'], function (cb) {
gulp.start('build', cb);
});

// Run PageSpeed Insights
// Run PageSpeed Insights
// Update `url` below to the public URL for your site
gulp.task('pagespeed', pagespeed.bind(null, {
// By default, we use the PageSpeed Insights
// free (no API key) tier. You can use a Google
// Developer API key if you have one. See
// By default, we use the PageSpeed Insights
// free (no API key) tier. You can use a Google
// Developer API key if you have one. See
// http://goo.gl/RkN0vE for info key: 'YOUR_API_KEY'
url: 'https://example.com',
strategy: 'mobile'
Expand Down

0 comments on commit 2a3f64e

Please sign in to comment.