diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-04-09 11:03:44 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-04-10 14:43:19 +0200 |
commit | f20953ac6c24877fb80f151369227dfad5890324 (patch) | |
tree | f99cf3b7f14bc80d08b2b620217d3c2d84aeac98 /server/sonar-web/Gruntfile.coffee | |
parent | a09cf3a6f7746be2c4114024688f1fb8221f4732 (diff) | |
download | sonarqube-f20953ac6c24877fb80f151369227dfad5890324.tar.gz sonarqube-f20953ac6c24877fb80f151369227dfad5890324.zip |
SONAR-5851 add app skeleton
Diffstat (limited to 'server/sonar-web/Gruntfile.coffee')
-rw-r--r-- | server/sonar-web/Gruntfile.coffee | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/sonar-web/Gruntfile.coffee b/server/sonar-web/Gruntfile.coffee index 9191ea6a716..f7ec3760fed 100644 --- a/server/sonar-web/Gruntfile.coffee +++ b/server/sonar-web/Gruntfile.coffee @@ -194,6 +194,10 @@ module.exports = (grunt) -> name: 'quality-gate/app' out: '<%= grunt.option("assetsDir") || pkg.assets %>build/js/quality-gate/app.js' + qualityProfiles: options: + name: 'quality-profiles/app' + out: '<%= grunt.option("assetsDir") || pkg.assets %>build/js/quality-profiles/app.js' + codingRules: options: name: 'coding-rules/app' out: '<%= grunt.option("assetsDir") || pkg.assets %>build/js/coding-rules/app.js' @@ -271,6 +275,9 @@ module.exports = (grunt) -> '<%= grunt.option("assetsDir") || pkg.assets %>js/templates/quality-gates.js': [ '<%= pkg.sources %>hbs/quality-gates/**/*.hbs' ] + '<%= grunt.option("assetsDir") || pkg.assets %>js/templates/quality-profiles.js': [ + '<%= pkg.sources %>hbs/quality-profiles/**/*.hbs' + ] '<%= grunt.option("assetsDir") || pkg.assets %>js/templates/source-viewer.js': [ '<%= pkg.sources %>hbs/source-viewer/**/*.hbs' ] |