forked from fengyuanchen/compressorjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
52 lines (50 loc) · 1.06 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
const commonjs = require('rollup-plugin-commonjs');
const nodeResolve = require('rollup-plugin-node-resolve');
const babel = require('rollup-plugin-babel');
const pkg = require('./package');
const now = new Date();
const banner = `/*!
* Image Compressor v${pkg.version}
* https://github.com/${pkg.repository}
*
* Copyright (c) 2017-${now.getFullYear()} Xkeshi
* Released under the ${pkg.license} license
*
* Date: ${now.toISOString()}
*/
`;
module.exports = {
input: 'src/index.js',
output: [
{
banner,
file: 'dist/image-compressor.js',
format: 'umd',
name: 'ImageCompressor',
},
{
banner,
file: 'dist/image-compressor.common.js',
format: 'cjs',
},
{
banner,
file: 'dist/image-compressor.esm.js',
format: 'es',
},
{
banner,
file: 'docs/js/image-compressor.js',
format: 'umd',
name: 'ImageCompressor',
},
],
plugins: [
nodeResolve(),
babel({
exclude: 'node_modules/**',
plugins: ['external-helpers'],
}),
commonjs(),
],
};