Skip to content

Commit

Permalink
ci: Remove sentry finalize from webpack plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbo2002 committed Aug 31, 2024
1 parent 4d36883 commit ef5b6fe
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions gruntfile.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,10 @@ module.exports = function (grunt) {
) {
const { sentryWebpackPlugin } = require('@sentry/webpack-plugin');
webpackConfig.plugins.push(sentryWebpackPlugin({
release: pkg.version,
release: {
name: pkg.version,
finalize: false
},
include: ['./dest'],
urlPrefix: '~/',
ignore: ['node_modules'],
Expand Down Expand Up @@ -671,7 +674,10 @@ module.exports = function (grunt) {
) {
const { sentryWebpackPlugin } = require('@sentry/webpack-plugin');
webpackConfig.plugins.push(sentryWebpackPlugin({
release: pkg.version,
release: {
name: pkg.version,
finalize: false
},
include: ['./dest'],
urlPrefix: '~/',
ignore: ['node_modules'],
Expand Down

0 comments on commit ef5b6fe

Please sign in to comment.