diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-03-27 16:06:20 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-03-29 09:45:00 +0100 |
commit | cb53cd80dd1167d68caaee15cfcec058b01fff5d (patch) | |
tree | a37d015c56108b406dd2130cacc9ec447aec1863 /server/sonar-docs/build.gradle | |
parent | 0c5b4644cf0ca5487516c581530c67a86bc0342f (diff) | |
download | sonarqube-cb53cd80dd1167d68caaee15cfcec058b01fff5d.tar.gz sonarqube-cb53cd80dd1167d68caaee15cfcec058b01fff5d.zip |
Improve front end local build time
Diffstat (limited to 'server/sonar-docs/build.gradle')
-rw-r--r-- | server/sonar-docs/build.gradle | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/server/sonar-docs/build.gradle b/server/sonar-docs/build.gradle index 6112b5ecca5..b26889a8fa7 100644 --- a/server/sonar-docs/build.gradle +++ b/server/sonar-docs/build.gradle @@ -12,7 +12,7 @@ yarn_run { environment = [ GATSBY_DOCS_VERSION: version ] inputs.property('version', version) inputs.dir('src').withPathSensitivity(PathSensitivity.RELATIVE) - ['gatsby-config.js', 'gatsby-node.js', 'package.json'].each { + ['gatsby-config.js', 'gatsby-node.js', 'package.json', 'yarn.lock', 'tsconfig.json'].each { inputs.file(it).withPathSensitivity(PathSensitivity.RELATIVE) } outputs.dir('public') @@ -20,10 +20,6 @@ yarn_run { args = ['build'] } -task "yarn_validate-ci"() { - -} - task "yarn_lint-report"() { } |