-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrollup.config.js
56 lines (53 loc) · 1.24 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
const babel = require('rollup-plugin-babel');
const commonjs = require('rollup-plugin-commonjs');
const resolve = require('rollup-plugin-node-resolve');
const pkg = require('./package');
const now = new Date();
const banner = `
/*!!
* VtexUtils.js v${pkg.version}
* https://github.com/${pkg.repository}
*
* Copyright (c) 2017-${now.getFullYear()} ${pkg.author.name}
* Released under the ${pkg.license} license
*
* Date: ${now.toISOString()}
*/
`;
module.exports = {
// Export banner
banner,
input: 'src/vtex-utils.js',
output: [
{
banner: banner,
file: 'dist/vtex-utils.js',
format: 'umd',
name: 'VTEX.VtexUtils',
},
{
banner: banner,
file: 'dist/vtex-utils.common.js',
format: 'cjs',
},
{
banner: banner,
file: 'dist/vtex-utils.esm.js',
format: 'es',
},
],
plugins: [
resolve({
browser: true,
}),
commonjs({
namedExports: {
'utilify-js': ['Utilify'],
},
}),
babel({
exclude: 'node_modules/**',
plugins: ['external-helpers'],
}),
],
};