-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathsentryVitePlugins.ts
107 lines (90 loc) · 3.39 KB
/
sentryVitePlugins.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import type { Plugin } from 'vite';
import type { AutoInstrumentSelection } from './autoInstrument';
import { makeAutoInstrumentationPlugin } from './autoInstrument';
import { detectAdapter } from './detectAdapter';
import { makeCustomSentryVitePlugins } from './sourceMaps';
import type { CustomSentryVitePluginOptions, SentrySvelteKitPluginOptions } from './types';
const DEFAULT_PLUGIN_OPTIONS: SentrySvelteKitPluginOptions = {
autoUploadSourceMaps: true,
autoInstrument: true,
debug: false,
};
/**
* Vite Plugins for the Sentry SvelteKit SDK, taking care of creating
* Sentry releases and uploading source maps to Sentry.
*
* Sentry adds a few additional properties to your Vite config.
* Make sure, it is registered before the SvelteKit plugin.
*/
export async function sentrySvelteKit(options: SentrySvelteKitPluginOptions = {}): Promise<Plugin[]> {
const mergedOptions = {
...DEFAULT_PLUGIN_OPTIONS,
...options,
adapter: options.adapter || (await detectAdapter(options.debug)),
};
const sentryPlugins: Plugin[] = [];
if (mergedOptions.autoInstrument) {
const pluginOptions: AutoInstrumentSelection = {
load: true,
serverLoad: true,
...(typeof mergedOptions.autoInstrument === 'object' ? mergedOptions.autoInstrument : {}),
};
sentryPlugins.push(
makeAutoInstrumentationPlugin({
...pluginOptions,
debug: options.debug || false,
}),
);
}
const sentryVitePluginsOptions = generateVitePluginOptions(mergedOptions);
if (sentryVitePluginsOptions) {
const sentryVitePlugins = await makeCustomSentryVitePlugins(sentryVitePluginsOptions);
sentryPlugins.push(...sentryVitePlugins);
}
return sentryPlugins;
}
/**
* This function creates the options for the custom Sentry Vite plugin.
* The options are derived from the Sentry SvelteKit plugin options, where the `_unstable` options take precedence.
*
* only exported for testing
*/
export function generateVitePluginOptions(
svelteKitPluginOptions: SentrySvelteKitPluginOptions,
): CustomSentryVitePluginOptions | null {
let sentryVitePluginsOptions: CustomSentryVitePluginOptions | null = null;
// Bundle Size Optimizations
if (svelteKitPluginOptions.bundleSizeOptimizations) {
sentryVitePluginsOptions = {
bundleSizeOptimizations: {
...svelteKitPluginOptions.bundleSizeOptimizations,
},
};
}
// Source Maps
if (svelteKitPluginOptions.autoUploadSourceMaps && process.env.NODE_ENV !== 'development') {
const { unstable_sentryVitePluginOptions, ...sourceMapsUploadOptions } =
svelteKitPluginOptions.sourceMapsUploadOptions || {};
sentryVitePluginsOptions = {
...(sentryVitePluginsOptions ? sentryVitePluginsOptions : {}),
...sourceMapsUploadOptions,
...unstable_sentryVitePluginOptions,
adapter: svelteKitPluginOptions.adapter,
// override the plugin's debug flag with the one from the top-level options
debug: svelteKitPluginOptions.debug,
};
if (sentryVitePluginsOptions.sourcemaps) {
sentryVitePluginsOptions.sourcemaps = {
...sourceMapsUploadOptions?.sourcemaps,
...unstable_sentryVitePluginOptions?.sourcemaps,
};
}
if (sentryVitePluginsOptions.release) {
sentryVitePluginsOptions.release = {
...sourceMapsUploadOptions?.release,
...unstable_sentryVitePluginOptions?.release,
};
}
}
return sentryVitePluginsOptions;
}