Skip to content

Commit

Permalink
fixes the sentry webpack plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
night committed Jul 24, 2023
1 parent 9e1ef4c commit 7100f06
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs/promises';
import {createRequire} from 'module';
import path from 'path';
import {sentryWebpackPlugin as SentryWebpackPlugin} from '@sentry/webpack-plugin';
import {sentryWebpackPlugin} from '@sentry/webpack-plugin';
import {CleanWebpackPlugin} from 'clean-webpack-plugin';
import CopyPlugin from 'copy-webpack-plugin';
import CssMinimizerPlugin from 'css-minimizer-webpack-plugin';
Expand Down Expand Up @@ -244,7 +244,7 @@ export default async (env, argv) => {
}),
...(process.env.GITHUB_TAG || process.env.GIT_REV
? [
new SentryWebpackPlugin({
sentryWebpackPlugin({
authToken: process.env.SENTRY_AUTH_TOKEN,
release: process.env.GIT_REV || git.long(),
org: 'nightdev',
Expand Down

0 comments on commit 7100f06

Please sign in to comment.