-
Notifications
You must be signed in to change notification settings - Fork 18
/
rollup.config.js
60 lines (57 loc) · 1.37 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 commonjs from '@rollup/plugin-commonjs';
import { nodeResolve } from '@rollup/plugin-node-resolve';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import { terser } from 'rollup-plugin-terser';
import typescript from 'rollup-plugin-typescript2';
import pkg from './package.json';
// `yarn build` -> `production` is true
// `yarn dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
const plugins = [
typescript({ useTsconfigDeclarationDir: true }),
nodePolyfills({ include: ['events'] }),
nodeResolve({ browser: true, extensions: ['.js', '.ts'] }),
commonjs(),
];
export default [
{
input: 'src/index.ts',
output: [
{
format: 'esm',
file: pkg.module,
},
],
plugins,
watch: {
include: 'src/**',
},
},
// NOTE: Currently only building ES module when running `yarn dev` to speed up re-builds.
{
input: 'src/index.ts',
output: [
{
format: 'cjs',
file: pkg.main,
},
{
format: 'umd',
file: pkg.browser,
indent: '\t',
name: 'Build',
sourcemap: !production,
},
{
format: 'umd',
file: pkg.browser.replace('.js', '.min.js'),
indent: '\t',
name: 'Build',
sourcemap: !production,
plugins: [terser()],
},
],
plugins,
watch: false,
},
];