forked from fengyuanchen/cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
58 lines (56 loc) · 1.1 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
57
58
const babel = require('rollup-plugin-babel');
const commonjs = require('rollup-plugin-commonjs');
const nodeResolve = require('rollup-plugin-node-resolve');
const pkg = require('./package');
const now = new Date();
const banner = `/*!
* Cropper v${pkg.version}
* https://github.com/${pkg.repository}
*
* Copyright (c) 2014-${now.getFullYear()} ${pkg.author.name}
* Released under the ${pkg.license} license
*
* Date: ${now.toISOString()}
*/
`;
module.exports = {
input: 'src/index.js',
output: [
{
banner,
file: 'dist/cropper.js',
format: 'umd',
name: 'Cropper',
globals: {
jquery: 'jQuery',
},
},
{
banner,
file: 'dist/cropper.common.js',
format: 'cjs',
},
{
banner,
file: 'dist/cropper.esm.js',
format: 'es',
},
{
banner,
file: 'docs/js/cropper.js',
format: 'umd',
name: 'Cropper',
globals: {
jquery: 'jQuery',
},
},
],
external: ['jquery'],
plugins: [
nodeResolve(),
commonjs(),
babel({
plugins: ['external-helpers'],
}),
],
};