-
Notifications
You must be signed in to change notification settings - Fork 15
/
rollup.config.js
49 lines (40 loc) · 1.35 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
import nodeResolve from 'rollup-plugin-node-resolve';
import { uglify } from 'rollup-plugin-uglify';
import sourcemaps from 'rollup-plugin-sourcemaps';
var MINIFY = process.env.MINIFY;
var pkg = require('./package.json');
var banner = `/**
* ${pkg.description}
* @version v${pkg.version}
* @link ${pkg.homepage}
* @license MIT License, http://www.opensource.org/licenses/MIT
*/`;
var uglifyOpts = { output: {} };
// retain multiline comment with @license
uglifyOpts.output.comments = (node, comment) => comment.type === 'comment2' && /@license/i.test(comment.value);
var plugins = [nodeResolve({ jsnext: true }), sourcemaps()];
const onwarn = (warning) => {
// Suppress this error message... https://github.com/rollup/rollup/wiki/Troubleshooting#this-is-undefined
const ignores = ['THIS_IS_UNDEFINED'];
if (!ignores.some((code) => code === warning.code)) {
console.error(warning.message);
}
};
if (MINIFY) plugins.push(uglify(uglifyOpts));
var extension = MINIFY ? '.min.js' : '.js';
const CONFIG = {
input: 'lib-esm/stickyStates.js',
output: {
name: pkg.name,
file: '_bundles/ui-router-sticky-states' + extension,
globals: { '@uirouter/core': '@uirouter/core' },
sourcemap: true,
format: 'umd',
banner: banner,
exports: 'named',
},
external: '@uirouter/core',
plugins: plugins,
onwarn: onwarn,
};
export default CONFIG;