Skip to content

Commit 0bd54d1

Browse files
committed
ref(core): Rename release management plugin name
1 parent b2a0529 commit 0bd54d1

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/bundler-plugin-core/src/plugins/release-management.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ interface ReleaseManagementPluginOptions {
3131
createDependencyOnSourcemapFiles: () => () => void;
3232
}
3333

34+
/**
35+
* Creates a plugin that creates releases, sets commits, deploys and finalizes releases.
36+
*
37+
* Additionally, if legacy upload options are set, it uploads source maps in the legacy (non-debugId) way.
38+
*/
3439
export function releaseManagementPlugin({
3540
releaseName,
3641
include,
@@ -47,7 +52,7 @@ export function releaseManagementPlugin({
4752
}: ReleaseManagementPluginOptions): UnpluginOptions {
4853
const freeGlobalDependencyOnSourcemapFiles = createDependencyOnSourcemapFiles();
4954
return {
50-
name: "sentry-debug-id-upload-plugin",
55+
name: "sentry-release-management-plugin",
5156
async writeBundle() {
5257
// It is possible that this writeBundle hook is called multiple times in one build (for example when reusing the plugin, or when using build tooling like `@vitejs/plugin-legacy`)
5358
// Therefore we need to actually register the execution of this hook as dependency on the sourcemap files.

0 commit comments

Comments
 (0)