diff options
-rw-r--r-- | server/sonar-vsts/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-web/build.gradle | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-vsts/build.gradle b/server/sonar-vsts/build.gradle index 807b81879e9..83ee5dbcd59 100644 --- a/server/sonar-vsts/build.gradle +++ b/server/sonar-vsts/build.gradle @@ -14,7 +14,7 @@ yarn_run { ['config', 'public', 'scripts', '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('build/webapp') 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) |