-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrollup.config.js
More file actions
52 lines (44 loc) · 1.18 KB
/
rollup.config.js
File metadata and controls
52 lines (44 loc) · 1.18 KB
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
import {resolve} from 'path';
import nodeResolve from 'rollup-plugin-node-resolve';
import json from 'rollup-plugin-json';
import serve from 'rollup-plugin-serve';
import {uglify} from 'rollup-plugin-uglify';
import babel from 'rollup-plugin-babel';
import postcss from 'rollup-plugin-postcss';
import filesize from 'rollup-plugin-filesize';
const env = process.env.NODE_ENV;
const config = {
plugins: [],
};
if (env === 'cjs' || env === 'es') {
config.input = resolve('src', 'index.js');
config.output = {format: env};
config.external = ['sweetalert2'];
config.plugins.push(postcss(), babel());
}
if (env === 'development' || env === 'production') {
config.input = resolve('src', 'bundle.js');
config.output = {
name: 'microfeedback',
format: 'umd',
globals: {sweetalert2: 'swal'},
};
config.plugins.push(
postcss(),
nodeResolve({
jsnext: true,
}),
babel({
exclude: ['**/*.json'],
}),
json()
);
}
if (env === 'production') {
config.plugins.push(uglify());
}
if (process.env.SERVE === 'true') {
config.plugins.push(serve({contentBase: ['dist', 'examples'], open: true}));
}
config.plugins.push(filesize());
export default config;