forked from fengyuanchen/viewerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
48 lines (45 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
37
38
39
40
41
42
43
44
45
46
47
48
const { babel } = require('@rollup/plugin-babel');
const changeCase = require('change-case');
const createBanner = require('create-banner');
const pkg = require('./package.json');
pkg.name = pkg.name.replace('js', '');
const name = changeCase.pascalCase(pkg.name);
const banner = createBanner({
data: {
name: `${name}.js`,
year: '2015-present',
},
});
module.exports = {
input: 'src/index.js',
output: [
{
banner,
name,
file: `dist/${pkg.name}.js`,
format: 'umd',
},
{
banner,
file: `dist/${pkg.name}.common.js`,
format: 'cjs',
exports: 'auto',
},
{
banner,
file: `dist/${pkg.name}.esm.js`,
format: 'esm',
},
{
banner,
name,
file: `docs/js/${pkg.name}.js`,
format: 'umd',
},
],
plugins: [
babel({
babelHelpers: 'bundled',
}),
],
};