Skip to content

Commit

Permalink
Fix all security vulnerabilities (#278)
Browse files Browse the repository at this point in the history
Fix security vulnerabilities
  • Loading branch information
ruslan-bikkinin authored Jan 17, 2019
1 parent cc74521 commit 6cbd391
Show file tree
Hide file tree
Showing 4 changed files with 1,900 additions and 766 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: node_js
node_js:
- '6.0.0'
before_script:
- npm install -g gulp
- npm install -g gulp@4.0.0
script: gulp
notifications:
slack:
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ gulp.task('jsonlint', function () {
.pipe(jsonlint.failAfterError());
});

gulp.task('lint', [ 'eslint', 'jsonlint' ]);
gulp.task('lint', gulp.series('eslint', 'jsonlint'));

gulp.task('default', [ 'lint' ]);
gulp.task('default', gulp.series('lint'));
Loading

0 comments on commit 6cbd391

Please sign in to comment.