Skip to content

Commit

Permalink
Fixed JSHint errors (#1994)
Browse files Browse the repository at this point in the history
  • Loading branch information
veelen authored and roblarsen committed Sep 26, 2017
1 parent 7db4ba3 commit f11f2fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ gulp.task('copy:.htaccess', () =>

gulp.task('copy:index.html', (done) =>
sri.hash('node_modules/jquery/dist/jquery.min.js', (err, hash) => {
if (err) throw err
if (err) throw err;

let version = pkg.devDependencies.jquery;
let modernizrVersion = pkg.devDependencies.modernizr;
Expand Down Expand Up @@ -183,14 +183,14 @@ gulp.task('archive', (done) => {
'build',
'archive:create_archive_dir',
'archive:zip',
done)
done);
});

gulp.task('build', (done) => {
runSequence(
['clean', 'lint:js'],
'copy', 'modernizr',
done)
done);
});

gulp.task('default', ['build']);

0 comments on commit f11f2fe

Please sign in to comment.