From d6dd991a29c518987e6cd592ad1c8b3d88bf1d92 Mon Sep 17 00:00:00 2001 From: Stas Vilchik Date: Wed, 20 May 2015 10:13:12 +0200 Subject: [PATCH] disable parallel compilation of web assets --- server/sonar-web/Gruntfile.coffee | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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'] -- 2.39.5