forked from remarkablemark/html-dom-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
36 lines (32 loc) · 893 Bytes
/
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
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
/**
* Build rollup config for development, test, or production.
*
* @param {boolean} [minify=false]
*/
const getConfig = (minify = false) => ({
input: 'index.js',
output: {
file: `dist/html-dom-parser${minify ? '.min' : ''}.js`,
format: 'umd',
name: 'HTMLDOMParser',
sourcemap: true
},
plugins: [commonjs(), resolve({ browser: true }), minify && terser()]
});
const configs = [getConfig(), getConfig(true)];
if (process.env.NODE_ENV === 'test') {
configs.push({
input: 'node_modules/htmlparser2',
output: {
file: 'dist/htmlparser2.js',
format: 'umd',
name: 'htmlparser2',
sourcemap: true
},
plugins: [commonjs(), resolve({ browser: true })]
});
}
export default configs;