-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.js
78 lines (76 loc) · 1.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { nodeResolve } from '@rollup/plugin-node-resolve';
import replace from '@rollup/plugin-replace';
import typescript from '@rollup/plugin-typescript';
import terser from '@rollup/plugin-terser';
import bundleSize from 'rollup-plugin-bundle-size';
import fs from 'fs';
import { version } from './package.json';
const OUTPUT_FOLDER = 'dist';
const banner = fs.readFileSync('./NOTICE.txt', { encoding: 'utf8' });
export default [
{
input: 'src/index.ts',
output: {
file: `${OUTPUT_FOLDER}/requestly-web-sdk.js`,
format: 'iife',
name: 'Requestly',
banner,
},
plugins: [
nodeResolve(),
typescript(),
replace({
preventAssignment: true,
__VERSION__: version,
}),
bundleSize(),
],
},
{
input: 'src/index.ts',
output: {
file: `${OUTPUT_FOLDER}/requestly-web-sdk.min.js`,
format: 'iife',
name: 'Requestly',
banner,
},
plugins: [
nodeResolve(),
typescript(),
terser({
format: {
comments: function (_, { type, value }) {
if (type == 'comment2') {
// multiline comment
return /@preserve|@license|Copyright/i.test(value);
}
},
},
}),
replace({
preventAssignment: true,
__VERSION__: version,
}),
bundleSize(),
],
},
{
input: 'src/index.ts',
output: {
dir: OUTPUT_FOLDER,
banner,
},
plugins: [
nodeResolve(),
typescript({
declaration: true,
declarationDir: 'dist',
rootDir: 'src',
}),
replace({
preventAssignment: true,
__VERSION__: version,
}),
],
},
];