-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.base.js
57 lines (55 loc) · 1.51 KB
/
rollup.base.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
56
57
import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import external from 'rollup-plugin-peer-deps-external';
import postcss from 'rollup-plugin-postcss';
import resolve from 'rollup-plugin-node-resolve';
import replace from 'rollup-plugin-replace';
import json from 'rollup-plugin-json';
import { terser } from 'rollup-plugin-terser';
import importAlias from 'rollup-plugin-import-alias';
import strip from '@rollup/plugin-strip';
const isProd = process.env.NODE_ENV === 'production';
export const rollupBase = {
plugins: [
external(),
postcss({
minimize: isProd,
}),
babel({
exclude: 'node_modules/**',
runtimeHelpers: true,
}),
resolve({
extensions: ['.mjs', '.js', '.jsx', '.json'],
}),
commonjs({
include: 'node_modules/**',
namedExports: {
'node_modules/react-is/index.js': ['isValidElementType', 'isContextConsumer'],
},
}),
replace({
ENV: JSON.stringify(process.env.NODE_ENV || 'development'),
}),
json(),
// gzipPlugin(),
importAlias({
Paths: {
'@mfs-lib': './src/lib',
'@mfs-react': './src/react',
'@mfs-react-redux': './src/react-redux',
'@mfs-redux': './src/redux',
'@mfs-registry': './src/registry',
'@mfs-core': './src/core',
},
Extensions: ['js'],
}),
strip({
functions: ['window.__DON_T_USE_PUSH_REDUX_CHANGE_TO_STORYBOOK'],
}),
isProd &&
terser({
toplevel: true,
}),
],
};