Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
chore: update deps, remove coveralls, fix audit issues (#5555)
  • Loading branch information
gkatsev committed Nov 6, 2018
1 parent 937e2bf commit 11f1fb8
Show file tree
Hide file tree
Showing 3 changed files with 683 additions and 591 deletions.
13 changes: 0 additions & 13 deletions build/grunt.js
Expand Up @@ -54,16 +54,6 @@ module.exports = function(grunt) {
dest: 'dist/video-js-' + version.full + '.zip'
}
},
coveralls: {
options: {
// warn instead of failing when coveralls errors
// we've seen coveralls 503 relatively frequently
force: true
},
all: {
src: 'test/dist/coverage/lcov.info'
}
},
concurrent: {
options: {
logConcurrentOutput: true
Expand Down Expand Up @@ -207,7 +197,6 @@ module.exports = function(grunt) {
// Default task - build and test
grunt.registerTask('default', ['test']);

// The test script includes coveralls only when the TRAVIS env var is set.
grunt.registerTask('test', function() {
const tasks = [
'build',
Expand All @@ -223,8 +212,6 @@ module.exports = function(grunt) {
grunt.log.write('Not running any tests because only docs were changed');
return;
}

tasks.concat(process.env.TRAVIS && 'coveralls').filter(Boolean);
}

grunt.task.run(tasks);
Expand Down

0 comments on commit 11f1fb8

Please sign in to comment.