Skip to content

Commit 11f1fb8

Browse files
authored
chore: update deps, remove coveralls, fix audit issues (#5555)
1 parent 937e2bf commit 11f1fb8

File tree

3 files changed

+683
-591
lines changed

3 files changed

+683
-591
lines changed

build/grunt.js

-13
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,6 @@ module.exports = function(grunt) {
5454
dest: 'dist/video-js-' + version.full + '.zip'
5555
}
5656
},
57-
coveralls: {
58-
options: {
59-
// warn instead of failing when coveralls errors
60-
// we've seen coveralls 503 relatively frequently
61-
force: true
62-
},
63-
all: {
64-
src: 'test/dist/coverage/lcov.info'
65-
}
66-
},
6757
concurrent: {
6858
options: {
6959
logConcurrentOutput: true
@@ -207,7 +197,6 @@ module.exports = function(grunt) {
207197
// Default task - build and test
208198
grunt.registerTask('default', ['test']);
209199

210-
// The test script includes coveralls only when the TRAVIS env var is set.
211200
grunt.registerTask('test', function() {
212201
const tasks = [
213202
'build',
@@ -223,8 +212,6 @@ module.exports = function(grunt) {
223212
grunt.log.write('Not running any tests because only docs were changed');
224213
return;
225214
}
226-
227-
tasks.concat(process.env.TRAVIS && 'coveralls').filter(Boolean);
228215
}
229216

230217
grunt.task.run(tasks);

0 commit comments

Comments
 (0)