forked from cure53/DOMPurify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
66 lines (62 loc) · 1.69 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
const fs = require('fs');
const babel = require('@rollup/plugin-babel').babel;
const nodeResolve = require('@rollup/plugin-node-resolve').nodeResolve;
const replace = require('@rollup/plugin-replace');
const { terser } = require('rollup-plugin-terser');
const pkg = require('./package.json');
const env = process.env.NODE_ENV;
const event = process.env.npm_lifecycle_event; // build, build:umd, ...
const version = process.env.npm_package_version;
const license = fs
.readFileSync('./src/license_header', 'utf8')
.replace(/VERSION/gi, version);
const commonOutputConfig = {
name: 'DOMPurify',
sourcemap: true,
banner: license,
exports: 'default',
};
const config = {
input: 'src/purify.js',
external: [],
output: [
{
...commonOutputConfig,
file: pkg.browser,
format: 'umd',
},
{
...commonOutputConfig,
file: pkg.production,
format: 'umd',
plugins: event === 'build' ? [terser()] : [],
},
{
...commonOutputConfig,
file: pkg.module,
format: 'es',
},
{
...commonOutputConfig,
file: pkg.main,
format: 'cjs',
},
],
plugins: [
babel({
// It is recommended to configure this option explicitly (even if with its default value) so an informed decision is taken on how those babel helpers are inserted into the code.
// Ref: https://github.com/rollup/plugins/tree/master/packages/babel#babelhelpers
babelHelpers: 'bundled',
exclude: ['**/node_modules/**'],
}),
nodeResolve(),
replace({
preventAssignment: true,
values: {
'process.env.NODE_ENV': JSON.stringify(env),
VERSION: `'${version}'`,
},
}),
],
};
module.exports = config;