diff options
author | Mathieu Suen <mathieu.suen@sonarsource.com> | 2022-04-05 13:58:25 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-04-06 20:03:01 +0000 |
commit | 78ce871afde1b35ebd232e4590b272623ba2a2d2 (patch) | |
tree | edd4ae37e9547010c3180115fcbe593776bca56d /server/sonar-web/build.gradle | |
parent | 9a1bca439a724c1cf74da3a1e4c38219ed01c377 (diff) | |
download | sonarqube-78ce871afde1b35ebd232e4590b272623ba2a2d2.tar.gz sonarqube-78ce871afde1b35ebd232e4590b272623ba2a2d2.zip |
Removing babel dependency
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 dc4be4d935a..2d019b148f6 100644 --- a/server/sonar-web/build.gradle +++ b/server/sonar-web/build.gradle @@ -17,7 +17,7 @@ task yarn_run(type: Exec) { ['config', 'public', 'scripts', 'src', '../sonar-docs/src'].each { inputs.dir(it).withPathSensitivity(PathSensitivity.RELATIVE) } - ['babel.config.js', 'package.json', 'tsconfig.json', 'yarn.lock'].each { + ['package.json', 'tsconfig.json', 'yarn.lock'].each { inputs.file(it).withPathSensitivity(PathSensitivity.RELATIVE) } outputs.dir(webappDir) |