-
Notifications
You must be signed in to change notification settings - Fork 2
/
rollup.config.js
56 lines (52 loc) · 1.25 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
47
48
49
50
51
52
53
54
55
56
import { terser } from 'rollup-plugin-terser';
import cleanup from 'rollup-plugin-cleanup';
import { babel } from '@rollup/plugin-babel';
const input = 'src/index.js';
const banner = `/**
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md.
*/`;
export default [
// Creates `umd` build that can be directly consumed via <script /> tag.
{
input,
output: {
banner,
format: 'umd',
file: 'dist/index.umd.min.js',
name: 'CKEditor4IntegrationsCommon'
},
plugins: [ babelPlugin(), cleanupPlugin(), terser() ]
},
// Creates `cjs` build that can be further optimized downstream.
{
input,
output: {
banner,
format: 'cjs',
file: 'dist/index.cjs.js'
},
plugins: [ babelPlugin(), cleanupPlugin() ]
},
// Creates `esm` build that can be further optimized downstream.
{
input,
output: {
banner,
format: 'esm',
file: 'dist/index.esm.js'
},
plugins: [ babelPlugin(), cleanupPlugin() ]
}
];
function babelPlugin() {
return babel( { babelHelpers: 'bundled', presets: [ '@babel/preset-env' ] } );
}
function cleanupPlugin() {
return cleanup( {
extensions: [ 'js' ],
comments: [
/@license Copyright (c) 2003-2024, CKSource Holding sp. z o.o./
]
} );
}