-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrollup.config.js
47 lines (41 loc) · 1018 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
// Libs
import babel from 'rollup-plugin-babel';
import path from 'path';
import uglify from 'rollup-plugin-uglify';
// Read package config
const pkgConfig = require('./package.json');
// Constants
const PROD = process.env.PROD || false;
const banner = `/* Lodash Addons
* @version ${pkgConfig.version}
* ${pkgConfig.repository}
* @copyright Copyright 2015 Helion3, and other contributors
* @license Licensed under MIT
* see ${pkgConfig.repository}/blob/master/LICENSE
*/`;
let plugins = [
babel({
exclude: 'node_modules/**'
})
];
if (PROD) {
plugins.push(uglify({
output: {
comments: /@license/
}
}));
}
export default {
input: path.join('src', 'index.js'),
external: ['lodash'],
plugins: plugins,
output: {
file: path.join('dist', 'lodash-addons' + (PROD ? '.min' : '') + '.js'),
format: 'umd',
name: 'LodashAddons',
banner: banner,
globals: {
lodash: '_'
}
}
};