-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathrollup.config.mjs
87 lines (84 loc) · 1.74 KB
/
rollup.config.mjs
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
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import dts from 'rollup-plugin-dts';
import esbuild from 'rollup-plugin-esbuild';
import nodePolyfills from 'rollup-plugin-polyfill-node';
import { default as pkg } from './package.json' assert { type: 'json' };
import json from '@rollup/plugin-json';
// take name from package "main" defined file
const name = pkg.main.replace(/\.js$/, '');
const embeded = [
'blakejs/blake2b',
'blindsecp256k1',
'circomlibjs',
'blake-hash',
'ffjavascript',
'crypto',
'os',
'ethers',
'assert',
'snarkjs',
'circom_runtime',
'@iden3/binfileutils',
];
// generics
const bundle = (config) => ({
...config,
input: 'src/index.ts',
external: (id) => {
if (embeded.includes(id)) {
return false;
}
if (process.platform === 'win32') {
return !id.includes('src');
}
return !id.startsWith('src') && !/^[./]/.test(id);
},
});
export default [
bundle({
plugins: [
json(),
// convert commonjs to esm modules
commonjs(),
// resolve node modules
resolve({
browser: true,
}),
nodePolyfills(),
// final transformation
esbuild({
target: 'esnext',
}),
],
output: [
// commonjs
{
file: `${name}.js`,
format: 'cjs',
sourcemap: true,
},
// es modules
{
file: `${name}.mjs`,
format: 'es',
sourcemap: true,
},
// umd
{
name: 'VocdoniSDK',
file: `${name}.umd.js`,
format: 'umd',
sourcemap: true,
},
],
}),
// typings
bundle({
plugins: [dts()],
output: {
file: `${name}.d.ts`,
format: 'es',
},
}),
];