Merge pull request #26904 from element-hq/t3chguy/add-webpack-sentry-workaround

Add workaround for webpack builds on platforms unsupported by Sentry
This commit is contained in:
Michael Telatynski 2024-01-22 15:03:10 +00:00 committed by GitHub
commit db78839e86
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,6 @@ const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const TerserPlugin = require("terser-webpack-plugin"); const TerserPlugin = require("terser-webpack-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin"); const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const HtmlWebpackInjectPreload = require("@principalstudio/html-webpack-inject-preload"); const HtmlWebpackInjectPreload = require("@principalstudio/html-webpack-inject-preload");
const { sentryWebpackPlugin } = require("@sentry/webpack-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin"); const CopyWebpackPlugin = require("copy-webpack-plugin");
// Environment variables // Environment variables
@ -701,9 +700,11 @@ module.exports = (env, argv) => {
files: [{ match: /.*Inter.*\.woff2$/ }], files: [{ match: /.*Inter.*\.woff2$/ }],
}), }),
// upload to sentry if sentry env is present // Upload to sentry if sentry env is present
// This plugin throws an error on import on some platforms like ppc64le & s390x even if the plugin isn't called,
// so we require it conditionally.
process.env.SENTRY_DSN && process.env.SENTRY_DSN &&
sentryWebpackPlugin({ require("@sentry/webpack-plugin").sentryWebpackPlugin({
release: process.env.VERSION, release: process.env.VERSION,
sourcemaps: { sourcemaps: {
paths: "./webapp/bundles/**", paths: "./webapp/bundles/**",