forked from fengyuanchen/datepicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
52 lines (49 loc) · 984 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
49
50
51
52
const babel = require('rollup-plugin-babel');
const commonjs = require('rollup-plugin-commonjs');
const createBanner = require('create-banner');
const nodeResolve = require('rollup-plugin-node-resolve');
const pkg = require('./package');
pkg.name = pkg.name.replace(/^.+\//, '');
const banner = createBanner({
case: 'PascalCase',
data: {
year: '2014-present',
},
});
module.exports = {
input: 'src/index.js',
output: [
{
banner,
file: `dist/${pkg.name}.js`,
format: 'umd',
globals: {
jquery: 'jQuery',
},
},
{
banner,
file: `dist/${pkg.name}.common.js`,
format: 'cjs',
},
{
banner,
file: `dist/${pkg.name}.esm.js`,
format: 'esm',
},
{
banner,
file: `docs/js/${pkg.name}.js`,
format: 'umd',
globals: {
jquery: 'jQuery',
},
},
],
external: ['jquery'],
plugins: [
nodeResolve(),
commonjs(),
babel(),
],
};