Remove Google Cast support since the JS library does not seem to be maintained anymore and it frequently breaks

This commit is contained in:
Pierre Rudloff 2017-07-03 10:17:37 +02:00
parent b5ef14a930
commit dd00e9d279
9 changed files with 3 additions and 128 deletions

View file

@ -11,7 +11,7 @@ module.exports = function (grunt) {
uglify: {
combine: {
files: {
'dist/main.js': ['js/cast.js']
'dist/main.js': ['js/*.js']
}
}
},
@ -128,8 +128,8 @@ module.exports = function (grunt) {
grunt.loadNpmTasks('grunt-potomo');
grunt.loadNpmTasks('grunt-contrib-csslint');
grunt.registerTask('default', ['uglify', 'cssmin', 'potomo']);
grunt.registerTask('lint', ['jslint', 'csslint', 'fixpack', 'jsonlint', 'phpcs']);
grunt.registerTask('default', ['cssmin', 'potomo']);
grunt.registerTask('lint', ['csslint', 'fixpack', 'jsonlint', 'phpcs']);
grunt.registerTask('test', ['phpunit']);
grunt.registerTask('doc', ['phpdocumentor']);
grunt.registerTask('release', ['default', 'githash', 'compress']);