forked from cure53/DOMPurify
-
Notifications
You must be signed in to change notification settings - Fork 3
/
rollup.config.js
44 lines (40 loc) · 1.26 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
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 env = process.env.NODE_ENV;
const isProd = env === 'production';
const version = process.env.npm_package_version;
const license = fs.readFileSync('./src/license_header', 'utf8').replace(/VERSION/ig, version);
const config = {
input: 'src/purify.js',
external: [],
output: {
name: 'DOMPurify',
globals: {},
format: 'umd',
sourcemap: true,
banner: license,
},
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}'`,
}
}),
],
};
if (isProd) {
config.plugins.push(terser());
}
module.exports = config;