diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2019-04-08 17:02:41 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-04-30 20:21:07 +0200 |
commit | 9d399028925cbc4910751fe590435590a14b78c3 (patch) | |
tree | 1cfeba3aaa30a93324801b1a23297341bc4445ed /server/sonar-web/build.gradle | |
parent | 452a3196d72b9513cddce54c339ea83bb9e83084 (diff) | |
download | sonarqube-9d399028925cbc4910751fe590435590a14b78c3.tar.gz sonarqube-9d399028925cbc4910751fe590435590a14b78c3.zip |
Fix babel input files for yarn
Diffstat (limited to 'server/sonar-web/build.gradle')
-rw-r--r-- | server/sonar-web/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/build.gradle b/server/sonar-web/build.gradle index c522d9a17a4..391f49ef4dd 100644 --- a/server/sonar-web/build.gradle +++ b/server/sonar-web/build.gradle @@ -31,7 +31,7 @@ yarn_run { ['config', 'public', 'scripts', 'src', '../sonar-docs/src'].each { inputs.dir(it).withPathSensitivity(PathSensitivity.RELATIVE) } - ['.babelrc', 'package.json', 'tsconfig.json', 'yarn.lock'].each { + ['babel.config.js', 'package.json', 'tsconfig.json', 'yarn.lock'].each { inputs.file(it).withPathSensitivity(PathSensitivity.RELATIVE) } outputs.dir(webappDir) |