-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.umd.config.js
55 lines (44 loc) · 1.14 KB
/
rollup.umd.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
import commonjs from 'rollup-plugin-commonjs';
import replace from 'rollup-plugin-replace';
import { uglify } from 'rollup-plugin-uglify';
import license from 'rollup-plugin-license';
import path from 'path';
import resolve from 'rollup-plugin-node-resolve';
import packageJSON from './package.json'
import babel from 'rollup-plugin-babel';
import { plugin as analyze } from 'rollup-plugin-analyzer'
export default {
input: 'src/index.js',
output: {
name: 'Jerrbit',
format: 'umd'
},
plugins: [
babel({
exclude: 'node_modules/(?!query-string)/**',
}),
analyze(),
commonjs({
namedExports: {
'node_modules/platform/platform.js': ['os']
},
exclude: [ 'node_modules/clone-function/src/**' ]
}),
resolve({
module: true,
main: true,
browser: true
}),
replace({
exclude: 'node_modules/**',
ENV: JSON.stringify(process.env.NODE_ENV || 'development'),
JERBIT_VERSION: packageJSON.version
}),
(process.env.NODE_ENV === 'production' && uglify()),
license({
banner: {
file: path.join(__dirname, 'LICENSE'),
}
})
]
};