-
Notifications
You must be signed in to change notification settings - Fork 4
/
rollup.config.js
70 lines (66 loc) · 1.51 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
61
62
63
64
65
66
67
68
69
70
import typescript from '@rollup/plugin-typescript';
import del from 'rollup-plugin-delete';
import { terser } from 'rollup-plugin-terser';
import dts from 'rollup-plugin-dts';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import fs from 'fs';
import define from 'rollup-plugin-define';
const packageJson = require('./package.json');
const plugins = [
define({
replacements: {
BUILD_VERSION: JSON.stringify(require('./package.json').version),
},
}),
typescript({
tsconfig: './tsconfig.json',
}),
json(),
commonjs(),
resolve(),
terser(),
];
const input = './lib/index.ts';
const external = (id) => !id.startsWith('\0') && !id.startsWith('.') && !id.startsWith('/');
export default [
{
input,
output: {
file: packageJson.main,
format: 'cjs',
sourcemap: true,
exports: 'auto',
},
plugins,
external,
},
{
input,
output: {
file: packageJson.module,
format: 'esm',
sourcemap: true,
},
plugins,
external,
},
{
input: './dist/lib/index.d.ts',
output: [{ file: packageJson.types, format: 'esm' }],
plugins: [
dts(),
del({ hook: 'buildEnd', targets: ['./dist/lib', './dist/cjs/lib'] }),
cjsPackage(),
],
},
];
function cjsPackage() {
return {
name: 'cjsPackage',
buildEnd: () => {
fs.writeFileSync('./dist/cjs/package.json', JSON.stringify({ type: 'commonjs' }));
},
};
}