forked from fengyuanchen/vue-countdown
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
46 lines (44 loc) · 928 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
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();
export default {
input: 'src/index.js',
output: [
{
file: 'dist/vue-countdown.js',
format: 'umd',
},
{
file: 'dist/vue-countdown.common.js',
format: 'cjs',
},
{
file: 'dist/vue-countdown.esm.js',
format: 'es',
},
{
file: 'docs/js/vue-countdown.js',
format: 'umd',
},
],
name: 'VueCountdown',
plugins: [
nodeResolve(),
commonjs(),
babel({
exclude: 'node_modules/**',
}),
],
banner: `/*!
* vue-countdown v${pkg.version}
* https://github.com/${pkg.repository}
*
* Copyright (c) ${now.getFullYear()} Xkeshi
* Released under the ${pkg.license} license
*
* Date: ${now.toISOString()}
*/
`,
};