aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/config
diff options
context:
space:
mode:
authorJeremy Davis <jeremy.davis@sonarsource.com>2022-10-19 15:12:43 +0200
committersonartech <sonartech@sonarsource.com>2022-10-31 20:03:00 +0000
commite7d1e94444fc1cffee3b281c4d5aed2b6e01bbb3 (patch)
tree6f2123bc8c4bdbea89d0717177a8610bb948db54 /server/sonar-web/config
parenta083111b57e6de80163424f845b5eb8260063de2 (diff)
downloadsonarqube-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.js5
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,