-
Notifications
You must be signed in to change notification settings - Fork 197
/
rollup.config.mjs
102 lines (97 loc) · 2.17 KB
/
rollup.config.mjs
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
import json from 'rollup-plugin-json'
import commonjs from 'rollup-plugin-commonjs'
import resolve from 'rollup-plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
const resolveModules = resolve()
const COMMON_PLUGINS = [
resolveModules,
commonjs(),
json(),
terser()
];
const COMMON_OUTPUT = {
format: 'umd',
name: 'PhoneInput',
sourcemap: true,
exports: 'named',
globals: {
'react': 'React',
'prop-types': 'PropTypes',
'react-hook-form': 'ReactHookForm'
}
};
const COMMON_EXTERNAL = ['react', 'prop-types']
export default [
{
input: 'min/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input.js',
...COMMON_OUTPUT
}
},
{
input: 'mobile/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-mobile.js',
...COMMON_OUTPUT
}
},
{
input: 'max/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-max.js',
...COMMON_OUTPUT
}
},
{
input: 'input/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-input.js',
...COMMON_OUTPUT
}
},
{
input: 'input-mobile/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-input-mobile.js',
...COMMON_OUTPUT
}
},
{
input: 'input-max/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-input-max.js',
...COMMON_OUTPUT
}
},
{
input: 'react-hook-form/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-react-hook-form.js',
...COMMON_OUTPUT
}
},
{
input: 'react-hook-form-input/index.js',
plugins: COMMON_PLUGINS,
external: COMMON_EXTERNAL,
output: {
file: 'bundle/react-phone-number-input-react-hook-form-input.js',
...COMMON_OUTPUT
}
}
]