-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathrollup.config.js
More file actions
100 lines (93 loc) · 1.97 KB
/
Copy pathrollup.config.js
File metadata and controls
100 lines (93 loc) · 1.97 KB
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
import babel from '@rollup/plugin-babel'
import commonjs from '@rollup/plugin-commonjs'
import dts from 'rollup-plugin-dts'
import resolve from '@rollup/plugin-node-resolve'
import { terser } from 'rollup-plugin-terser'
import pkg from './package.json'
import { minifyConfig } from './build/minification.js'
const extensions = ['.ts', '.tsx', '.js']
const resolverPlugin = resolve({ extensions })
const babelPlugin = babel({
babelHelpers: 'bundled',
sourceMaps: true,
extensions,
exclude: /node_modules.*/,
})
const createTerser = ({ inline }) =>
terser(
minifyConfig({
beautify: Boolean(process.env.BUILD_PRETTY),
inline,
})
)
const input = 'src/editor/index.ts'
const external = [
...Object.keys(pkg.devDependencies),
...Object.keys(pkg.dependencies),
...Object.keys(pkg.peerDependencies),
]
// eslint-disable-next-line import/no-anonymous-default-export
export default [
{
input,
external: [
'react',
'react-dom',
'@tippyjs/react',
'tippy.js',
'styled-components',
],
output: {
name: 'editor',
file: pkg.unpkg,
format: 'umd',
globals: {
'react': 'React',
'react-is': 'ReactIs',
'react-dom': 'ReactDOM',
'@tippyjs/react': 'Tippy',
'@popperjs/core': 'Popper',
'tippy.js': 'tippy',
'styled-components': 'styled',
'crypto': 'crypto',
},
},
plugins: [
babelPlugin,
resolverPlugin,
commonjs(),
createTerser({ inline: false }),
],
},
{
input,
external,
output: [
{
file: pkg.main,
format: 'cjs',
},
{
file: pkg.module,
format: 'es',
},
],
plugins: [
babelPlugin,
resolverPlugin,
commonjs(),
createTerser({ inline: true }),
],
},
{
input,
external,
output: [
{
file: pkg.types,
format: 'es',
},
],
plugins: [resolverPlugin, dts()],
},
]