-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
43 lines (40 loc) · 1.14 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
import babel from 'rollup-plugin-babel'
import serve from 'rollup-plugin-serve'
import { terser } from 'rollup-plugin-terser'
const isWatch = process.argv.includes('-w') || process.argv.includes('--watch')
const isProduction = process.env.NODE_ENV === 'production'
const config = (format, file, minify, server = false) => ({
input: './src/index.js',
output: {
name: 'ReactFormValidation',
format,
file,
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'prop-types': 'PropTypes',
},
},
plugins: [
babel(),
minify && terser(),
server &&
serve({
port: 8001,
host: '0.0.0.0',
path: 'examples/index.html',
contentBase: ['examples', 'dist'],
open: false,
wait: 500,
}),
],
external: ['react', 'react-dom', 'prop-types'],
})
export default [
config('umd', './dist/index.umd.js', false, !isProduction && isWatch),
config('umd', './dist/index.umd.min.js', true),
config('module', './dist/index.min.mjs', true),
config('module', './dist/index.mjs'),
config('cjs', './dist/index.cjs.min.js', true),
config('cjs', './dist/index.cjs.js'),
]