-
-
Notifications
You must be signed in to change notification settings - Fork 3k
/
rollup.config.js
46 lines (40 loc) · 1.07 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
import commonjs from '@rollup/plugin-commonjs';
import nodeResolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import globals from 'rollup-plugin-node-globals';
// Debugging tools
import {visualizer} from 'rollup-plugin-visualizer';
import pickFromPackageJson from './scripts/pick-from-package-json';
import {version} from './package.json';
const config = {
input: './browser-entry.js',
output: {
file: './mocha.js',
format: 'umd',
sourcemap: true,
name: 'mocha',
banner: `// mocha@${version} in javascript ES2018`
},
plugins: [
json(),
pickFromPackageJson({
keys: ['name', 'version', 'homepage', 'notifyLogo']
}),
commonjs(),
globals(),
nodePolyfills(),
nodeResolve({
browser: true
})
],
onwarn: (warning, warn) => {
if (warning.code === 'CIRCULAR_DEPENDENCY') return;
// Use default for everything else
warn(warning);
}
};
if (!process.env.CI) {
config.plugins.push(visualizer());
}
export default config;