From: Stas Vilchik Date: Wed, 20 May 2015 08:13:12 +0000 (+0200) Subject: disable parallel compilation of web assets X-Git-Tag: 5.2-RC1~1902 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d6dd991a29c518987e6cd592ad1c8b3d88bf1d92;p=sonarqube.git disable parallel compilation of web assets --- diff --git a/server/sonar-web/Gruntfile.coffee b/server/sonar-web/Gruntfile.coffee index b270cad4c64..b9431a16328 100644 --- a/server/sonar-web/Gruntfile.coffee +++ b/server/sonar-web/Gruntfile.coffee @@ -160,9 +160,6 @@ module.exports = (grunt) -> parallel: - compile: - options: grunt: true - tasks: ['less:build', 'coffee:build', 'handlebars:build'] build: options: grunt: true tasks: [ @@ -411,7 +408,7 @@ module.exports = (grunt) -> # Basic tasks grunt.registerTask 'prepare', - ['clean:css', 'clean:js', 'clean:build', 'parallel:compile', 'copy:js', 'concat:build'] + ['clean:css', 'clean:js', 'clean:build', 'less:build', 'coffee:build', 'handlebars:build', 'copy:js', 'concat:build'] grunt.registerTask 'build-fast-suffix', ['copy:assets-css', 'copy:assets-all-js']