diff options
author | Jeremy Davis <jeremy.davis@sonarsource.com> | 2022-10-19 15:12:43 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-10-31 20:03:00 +0000 |
commit | e7d1e94444fc1cffee3b281c4d5aed2b6e01bbb3 (patch) | |
tree | 6f2123bc8c4bdbea89d0717177a8610bb948db54 /server/sonar-web/config | |
parent | a083111b57e6de80163424f845b5eb8260063de2 (diff) | |
download | sonarqube-e7d1e94444fc1cffee3b281c4d5aed2b6e01bbb3.tar.gz sonarqube-e7d1e94444fc1cffee3b281c4d5aed2b6e01bbb3.zip |
[NO JIRA] Upgrade d3-zoom and d3-selection
Diffstat (limited to 'server/sonar-web/config')
-rw-r--r-- | server/sonar-web/config/esbuild-config.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/server/sonar-web/config/esbuild-config.js b/server/sonar-web/config/esbuild-config.js index 2d5842ada02..fa892c428ba 100644 --- a/server/sonar-web/config/esbuild-config.js +++ b/server/sonar-web/config/esbuild-config.js @@ -17,7 +17,6 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -const path = require('path'); const autoprefixer = require('autoprefixer'); const postCssPlugin = require('esbuild-plugin-postcss2').default; const postCssCalc = require('postcss-calc'); @@ -25,14 +24,10 @@ const postCssCustomProperties = require('postcss-custom-properties'); const documentationPlugin = require('./esbuild-documentation-plugin'); const htmlPlugin = require('./esbuild-html-plugin'); const htmlTemplate = require('./indexHtmlTemplate'); -const alias = require('esbuild-plugin-alias'); const { getCustomProperties, TARGET_BROWSERS } = require('./utils'); module.exports = release => { const plugins = [ - alias({ - 'd3-selection': path.resolve(__dirname, '../node_modules/d3-selection/src/index.js') - }), postCssPlugin({ plugins: [ autoprefixer, |