diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-05-15 11:51:53 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-05-15 11:51:53 +0200 |
commit | 2ef5c567c71de7dc24c220261b9184aaacf51b49 (patch) | |
tree | fee1e695945b56db3a5e62d8969656411268e591 | |
parent | d356b785defb5bb431422c13a9adc2fbbc57cb95 (diff) | |
download | sonarqube-2ef5c567c71de7dc24c220261b9184aaacf51b49.tar.gz sonarqube-2ef5c567c71de7dc24c220261b9184aaacf51b49.zip |
add grunt task for quick build (no minification)
-rw-r--r-- | server/sonar-web/Gruntfile.coffee | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-web/Gruntfile.coffee b/server/sonar-web/Gruntfile.coffee index ba4233e66ad..959a5d99c6d 100644 --- a/server/sonar-web/Gruntfile.coffee +++ b/server/sonar-web/Gruntfile.coffee @@ -502,6 +502,9 @@ module.exports = (grunt) -> ['dev', 'express:test', 'casper:testfile'] # tasks used by Maven build (see pom.xml) + grunt.registerTask 'maven-quick-build', + ['dev'] + grunt.registerTask 'maven-build-skip-tests-true-nocoverage', ['build'] |