-
Notifications
You must be signed in to change notification settings - Fork 7
/
rollup.config.js
122 lines (120 loc) · 3.63 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import postcss from 'rollup-plugin-postcss';
import json from 'rollup-plugin-json';
import babel from 'rollup-plugin-babel';
import clear from 'rollup-plugin-clear';
import url from '@entrylabs/postcss-url';
import builtins from 'rollup-plugin-node-builtins';
import replace from 'rollup-plugin-replace';
import { terser } from 'rollup-plugin-terser';
const isProduction = process.env.NODE_ENV === 'production';
const plugins = [
isProduction
? clear({
targets: ['component', 'dist'],
})
: undefined,
builtins(),
postcss({
modules: true,
extract: true,
plugins: [
url({
url: 'inline',
maxSize: 14,
fallback: 'copy',
optimizeSvgEncode: true,
copyPath: './dist/image',
assetsPath: './image',
useHash: true,
}),
],
}),
json(),
resolve({
preferBuiltins: true,
extensions: ['.mjs', '.js', '.jsx', '.json'],
}),
commonjs({
namedExports: {
'node_modules/react/index.js': [
'Children',
'Component',
'createRef',
'PropTypes',
'createElement',
'createFactory',
'useState',
'useEffect',
'useRef',
'useMemo',
'useReducer',
'useCallback',
'useImperativeHandle',
'forwardRef',
],
'node_modules/lodash/lodash.js': ['debounce'],
'node_modules/chroma-js/chroma.js': ['isValidElementType'],
'node_modules/react-is/index.js': ['isValidElementType'],
},
}),
babel({
babelrc: false,
runtimeHelpers: true,
plugins: [
['@babel/plugin-transform-runtime', { useESModules: true }],
'@babel/plugin-transform-regenerator',
'@babel/plugin-syntax-dynamic-import',
'@babel/plugin-transform-object-assign',
'@babel/plugin-proposal-class-properties',
[
'module-resolver',
{
root: ['./'],
alias: {
'@hoc': './src/hoc',
'@actions': './src/actions',
'@assets': './src/assets',
'@components': './src/components',
'@utils': './src/utils',
'@constants': './src/constants',
'@selectors': './src/selectors',
'@sheet': './extern/sheet',
},
},
],
],
presets: [
['@babel/react', { modules: false }],
[
'@babel/env',
{
modules: false,
targets: {
browsers: ['>0.25%', 'last 2 versions', 'ie >= 10'],
},
},
],
],
exclude: 'node_modules/**',
}),
replace({
'process.env.NODE_ENV': isProduction
? JSON.stringify('production')
: JSON.stringify('development'),
}),
isProduction ? terser() : undefined,
];
export default [
{
input: 'src/index.jsx',
plugins,
output: {
file: './dist/entry-tool.js',
format: 'iife',
name: 'EntryTool',
sourcemap: true,
},
},
];