-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
rollup.config.js
59 lines (55 loc) · 1.59 KB
/
rollup.config.js
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
import commonjs from 'rollup-plugin-commonjs';
import { terser } from 'rollup-plugin-terser';
import resolve from 'rollup-plugin-node-resolve';
import typescript from 'rollup-plugin-typescript2';
const terserInstance = terser({
mangle: {
// captureExceptions and captureMessage are public API methods and they don't need to be listed here
// as mangler doesn't touch user-facing thing, however sentryWrapepd is not, and it would be mangled into a minified version.
// We need those full names to correctly detect our internal frames for stripping.
// I listed all of them here just for the clarity sake, as they are all used in the frames manipulation process.
reserved: ['captureException', 'captureMessage', 'sentryWrapped'],
properties: {
regex: /^_[^_]/,
},
},
});
const defaultPlugins = [
typescript({
tsconfig: 'tsconfig.build.json',
tsconfigOverride: {
compilerOptions: {
declaration: false,
declarationMap: false,
module: 'ES2015',
},
},
}),
resolve({
mainFields: ['module'],
}),
commonjs(),
];
const defaultMinPlugins = [...defaultPlugins, terserInstance];
export default [
{
input: 'src/js/sentry-cordova.ts',
output: {
file: 'dist/js/sentry-cordova.bundle.min.js',
format: 'cjs',
exports: 'named',
sourcemap: true,
},
plugins: defaultMinPlugins,
},
{
input: 'src/js/sentry-cordova.ts',
output: {
file: 'dist/js/sentry-cordova.bundle.js',
format: 'cjs',
exports: 'named',
sourcemap: true,
},
plugins: defaultPlugins,
},
];