Skip to content

Commit df2fd99

Browse files
committed
tweak comment
1 parent c935831 commit df2fd99

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev-packages/rollup-utils/plugins/bundlePlugins.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function makeSetSDKSourcePlugin(sdkSource) {
6565
preventAssignment: false,
6666
delimiters: ['', ''],
6767
values: {
68-
'/* ref:__SENTRY_SDK_SOURCE__ */': `return ${JSON.stringify(sdkSource)};`,
68+
'/* __SENTRY_SDK_SOURCE__ */': `return ${JSON.stringify(sdkSource)};`,
6969
},
7070
});
7171
}

packages/utils/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ export function isBrowserBundle(): boolean {
3131
*/
3232
export function getSDKSource(): SdkSource {
3333
// This comment is used to identify this line in the CDN bundle build step and replace this with "return 'cdn';"
34-
/* ref:__SENTRY_SDK_SOURCE__ */ return 'npm';
34+
/* __SENTRY_SDK_SOURCE__ */ return 'npm';
3535
}

0 commit comments

Comments
 (0)