-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.node.js
49 lines (48 loc) · 1.05 KB
/
rollup.config.node.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
import json from '@rollup/plugin-json';
import babel from '@rollup/plugin-babel';
import filesize from 'rollup-plugin-filesize';
export default {
input: 'src/index.js',
output: [
{
file: 'dist/jcognos.esm.js', // equivalent to --output
format: 'es',
name: 'jcognos',
banner: `/**
* Copyright (c) 2017, Reinier Battenberg
* All rights reserved.
*
* Source code can be found at:
* https://github.com/CognosExt/jcognos
*
* @license GPL 3.0
*/
`,
},
{
file: 'dist/jcognos.cjs.js', // equivalent to --output
format: 'cjs',
name: 'jcognos',
banner: `/**
* Copyright (c) 2017, Reinier Battenberg
* All rights reserved.
*
* Source code can be found at:
* https://github.com/CognosExt/jcognos
*
* @license GPL 3.0
*/
`,
},
],
plugins: [
json(),
babel({
exclude: 'node_modules/**',
babelHelpers: 'bundled',
//,
// plugins: ['@babel/plugin-external-helpers']
}),
filesize(),
],
};