-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
60 lines (56 loc) · 1.38 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
import babel from 'rollup-plugin-babel';
import { terser } from 'rollup-plugin-terser';
import commonjs from 'rollup-plugin-commonjs';
import typescript from 'rollup-plugin-typescript';
import nodeResolve from 'rollup-plugin-node-resolve';
import pkg from './package.json';
const input = 'src/index.ts';
const globals = { react: 'React' };
const external = Object.keys(globals).concat('@babel/runtime');
const license = {
output: {
preamble: [
'/**',
' * react-promiseportal v' + process.env.npm_package_version,
' *',
' * Copyright (c) 2019 babangsund',
' *',
' * This source code is licensed under the MIT license found in the',
' * LICENSE file in the root directory of this source tree.',
' */',
].join('\n'),
},
};
export default {
input,
external,
plugins: [
babel({
runtimeHelpers: true,
exclude: 'node_modules/**',
plugins: [['@babel/transform-runtime', { useESModules: true }]],
}),
nodeResolve(),
typescript(),
commonjs(),
process.env.NODE_ENV === 'production' && terser(license),
],
output: [
{
globals,
format: 'esm',
file: pkg.module,
},
{
globals,
format: 'cjs',
file: pkg.main,
},
{
globals,
format: 'umd',
name: 'ReactPromisePortal',
file: `dist/index.umd.${process.env.NODE_ENV}.js`,
},
],
};