forked from ui-router/sticky-states
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
executable file
·47 lines (37 loc) · 1.1 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
import nodeResolve from 'rollup-plugin-node-resolve';
import uglify from 'rollup-plugin-uglify';
import progress from 'rollup-plugin-progress';
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}),
progress(),
sourcemaps(),
];
if (MINIFY) plugins.push(uglify(uglifyOpts));
var extension = MINIFY ? ".min.js" : ".js";
const CONFIG = {
moduleName: pkg.name,
entry: 'lib-esm/stickyStates.js',
dest: 'bundles/ui-router-sticky-states' + extension,
external: '@uirouter/core',
globals: { '@uirouter/core': '@uirouter/core' },
sourceMap: true,
format: 'umd',
exports: 'named',
plugins: plugins,
banner: banner,
};
export default CONFIG;